Android使用shape使組件呈現(xiàn)出特殊效果的方法
本文實例講述了Android使用shape使組件呈現(xiàn)出特殊效果的方法。分享給大家供大家參考,具體如下:

使用到的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#ffffff"
android:gravity="center_horizontal">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="未使用效果"
android:layout_marginTop="30dp"
/>
<EditText
android:id="@+id/edit"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="未使用效果 未使用效果 未使用效果 未使用效果 未使用效果 未使用效果"
android:cursorVisible="true"
/>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="使用效果"
android:layout_marginTop="10dp"
/>
<EditText
android:id="@+id/edit2"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="使用效果 使用效果 使用效果 使用效果 使用效果 使用效果 使用效果 使用效果"
android:background="@drawable/shape"
android:cursorVisible="true"
/>
</LinearLayout>
使用到的shape文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners
android:radius="10dp"
/>
<gradient
android:startColor="#33CC00"
android:endColor="#666600"
android:angle="45"
/>
<padding
android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp"
/>
<stroke
android:width="3dp"
android:color="#FF3300"
/>
</shape>
在這里主要說一下shape文件中各項的功能
gradient主要設置背景顏色漸變。startColor為起始顏色值,endColor為結(jié)束顏色值,angle為漸變角度
padding主要設置組件里內(nèi)容距離組件內(nèi)邊框的間距
stroke主要設置組件的邊框。width為邊框?qū)挾?,color為邊框顏色
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進階教程》、《Android布局layout技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android操作json格式數(shù)據(jù)技巧總結(jié)》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設計有所幫助。
- Android編程使用自定義shape實現(xiàn)shadow陰影效果的方法
- Android Selector和Shape的使用方法
- Android自定義shape的使用示例
- Android控件系列之Shape使用方法
- Android中的Shape和Selector的結(jié)合使用實例
- Android Shape控件美化實現(xiàn)代碼
- Android shape和selector 結(jié)合使用實例代碼
- Android中shape定義控件的使用
- Android開發(fā)教程之shape和selector的結(jié)合使用
- Android中drawable使用Shape資源
- 三款Android炫酷Loading動畫組件推薦
- Android開發(fā)之WebView組件的使用解析
相關(guān)文章
Android實現(xiàn)基于ViewPager的無限循環(huán)自動播放帶指示器的輪播圖CarouselFigureView控件
這篇文章主要介紹了Android實現(xiàn)基于ViewPager的無限循環(huán)自動播放帶指示器的輪播圖CarouselFigureView控件,需要的朋友可以參考下2017-02-02
Android Native 內(nèi)存泄漏系統(tǒng)化解決方案
這篇文章主要介紹了Android Native 內(nèi)存泄漏系統(tǒng)化解決方案,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-07-07
Android安裝應用 INSTALL_FAILED_DEXOPT 問題及解決辦法
這篇文章主要介紹了Android安裝應用 INSTALL_FAILED_DEXOPT 解決辦法,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-04-04
分享Android中ExpandableListView控件使用教程
這篇文章主要介紹了Android中ExpandableListView控件使用教程,可以實現(xiàn)二級列表展示效果,需要的朋友可以參考下2015-12-12

