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主要設(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ā)入門與進階教程》、《Android布局layout技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android操作json格式數(shù)據(jù)技巧總結(jié)》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設(shè)計有所幫助。
- 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資源
- 三款A(yù)ndroid炫酷Loading動畫組件推薦
- Android開發(fā)之WebView組件的使用解析
相關(guān)文章
Android布局耗時監(jiān)測的三種實現(xiàn)方式
在Android應(yīng)用開發(fā)中,性能優(yōu)化是一個至關(guān)重要的方面,為了更好地監(jiān)測布局渲染的耗時,我們需要一種可靠的實現(xiàn)方案,本文將介紹三種針對Android布局耗時監(jiān)測的實現(xiàn)方案,幫助開發(fā)者及時發(fā)現(xiàn)并解決布局性能問題,需要的朋友可以參考下2024-03-03
android開發(fā)之橫向滾動/豎向滾動的ListView(固定列頭)
由于項目需要,我們需要一個可以橫向滾動的,又可以豎向滾動的 表格;經(jīng)過幾天的研究終于搞定,感興趣的朋友可以了解下哦2013-01-01
Android編程實現(xiàn)WebView添加進度條的方法
這篇文章主要介紹了Android編程實現(xiàn)WebView添加進度條的方法,涉及Android WebView界面及控件功能相關(guān)操作技巧,需要的朋友可以參考下2017-02-02
Android利用Canvas標(biāo)點畫線并加入位移動畫(2)
這篇文章主要為大家詳細(xì)介紹了Android利用Canvas標(biāo)點畫線并加入位移動畫的第二篇,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-09-09
Android?內(nèi)存優(yōu)化知識點梳理總結(jié)
這篇文章主要介紹了Android?內(nèi)存優(yōu)化知識點梳理總結(jié),Android?操作系統(tǒng)給每個進程都會分配指定額度的內(nèi)存空間,App?使用內(nèi)存來進行快速的文件訪問交互,長時間如此便需要優(yōu)化策略,文章分享優(yōu)化知識點總結(jié),需要的朋友可以參考一下2022-06-06
Android自定義View實現(xiàn)球形動態(tài)加速球
這篇文章主要為大家詳細(xì)介紹了Android自定義View實現(xiàn)球形動態(tài)加速球,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-06-06

