Android常用控制項

2021-09-30 13:45:59 字數 1248 閱讀 3112

此文章適合初級學習android常用控制項的學員,如果文章中有不恰當的地方請指點

1.textview(顯示文字的控制項)

其中常見屬性有

android:text 設定文字框內文字內容

android:singleline  為true文字框不會換行

android:lines   預設佔幾行

android:minlines    最少佔幾行

android:textcolor   字型顏色

android:textsize  字型大小

android:textstyle 字型風格

2,edittext(編輯文字的控制項)

editview是textview的子類

其中常見屬性有

android:password  密碼框

android:phonenumber  **框

android:inputtype="" 以上使用兩種為過時寫法,推薦使用這種

android:textcolorhighiht  文字被選中時的背景顏色

android:hint   提示文字

3.shape外形資源

所謂的資源都是在res檔案下的xml檔案,每一種型別的xml檔案都對應了一種資源。

屬性:android:shape

取值:rectangle 矩形

oval  橢圓

line  直線

ring 圓環

子節點:

定義幾何圖形四個角的弧度   

android: radius 

android:***radius 設定某乙個角的弧度

定義使用漸變顏色填充

android:startcolor 開始顏色

android:centercolor 中間顏色

android:endcolor   結束顏色

定義幾何形狀的內邊距

定義幾何形狀的大小

android:定義使用單種顏色填充 

定義幾何形狀的邊框

android:width 邊框寬度

android:color 邊框顏色

android:dashwid 虛線寬度

android:dashgap 虛線間距

4.selector選擇器

作用:在控制控制項在不同狀態下的樣式

android:state_focused="" 控制項狀態true獲false

android:drawable=「」 設定對應的資源或者

android常用控制項

一.textview 屬性 1.android text 設定文字框的文字內容 3.android singleline 為true文字框不會換行 已過時 4.android lines 預設佔幾行 5.android minlines 最少佔幾行 6.android textcolor 字型顏色 ...

Android常用控制項

toast 吐絲框 是android中的一種簡易的訊息提示框 scaletype 縮放型別 scaletype的屬性值有 matrix fitxy fitstart fitcenter fitend center centercrop centerinside 用得最多還是fitxy fitstar...

android常用控制項

radiogroup radiobutton checkbox toast progressbar 1.setvisibility view.visibility 2.setmax 3.setprogress listview 使用步驟 1.要extends listactivity 2.準備兩個x...