Android使用shape使組件呈現(xiàn)出特殊效果的方法
本文實(shí)例講述了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文件中各項(xiàng)的功能
gradient主要設(shè)置背景顏色漸變。startColor為起始顏色值,endColor為結(jié)束顏色值,angle為漸變角度
padding主要設(shè)置組件里內(nèi)容距離組件內(nèi)邊框的間距
stroke主要設(shè)置組件的邊框。width為邊框?qū)挾?,color為邊框顏色
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進(jìn)階教程》、《Android布局layout技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android操作json格式數(shù)據(jù)技巧總結(jié)》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》
希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。
- Android編程使用自定義shape實(shí)現(xiàn)shadow陰影效果的方法
- Android Selector和Shape的使用方法
- Android自定義shape的使用示例
- Android控件系列之Shape使用方法
- Android中的Shape和Selector的結(jié)合使用實(shí)例
- Android Shape控件美化實(shí)現(xiàn)代碼
- Android shape和selector 結(jié)合使用實(shí)例代碼
- Android中shape定義控件的使用
- Android開發(fā)教程之shape和selector的結(jié)合使用
- Android中drawable使用Shape資源
- 三款A(yù)ndroid炫酷Loading動(dòng)畫組件推薦
- Android開發(fā)之WebView組件的使用解析
相關(guān)文章
Android實(shí)現(xiàn)基于ViewPager的無(wú)限循環(huán)自動(dòng)播放帶指示器的輪播圖CarouselFigureView控件
這篇文章主要介紹了Android實(shí)現(xiàn)基于ViewPager的無(wú)限循環(huán)自動(dòng)播放帶指示器的輪播圖CarouselFigureView控件,需要的朋友可以參考下2017-02-02Android Native 內(nèi)存泄漏系統(tǒng)化解決方案
這篇文章主要介紹了Android Native 內(nèi)存泄漏系統(tǒng)化解決方案,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-07-07Android安裝應(yīng)用 INSTALL_FAILED_DEXOPT 問題及解決辦法
這篇文章主要介紹了Android安裝應(yīng)用 INSTALL_FAILED_DEXOPT 解決辦法,本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-04-04分享Android中ExpandableListView控件使用教程
這篇文章主要介紹了Android中ExpandableListView控件使用教程,可以實(shí)現(xiàn)二級(jí)列表展示效果,需要的朋友可以參考下2015-12-12Android應(yīng)用啟動(dòng)流程之從啟動(dòng)到可交互的過程解析
這篇文章將給大家總結(jié)學(xué)習(xí)Android 基礎(chǔ)知識(shí),Android應(yīng)用啟動(dòng)流程,從啟動(dòng)到可交互的過程解析,在學(xué)習(xí)過程中,大家最好是把源碼下載下來(lái),感興趣的小伙伴跟著小編一起來(lái)看看吧2023-08-08Android 實(shí)現(xiàn)將Bitmap 保存到本地
這篇文章主要介紹了Android 實(shí)現(xiàn)將Bitmap 保存到本地,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來(lái)看看吧2020-03-03