安卓自定義屬性運用

2021-06-27 03:55:44 字數 2518 閱讀 6620

1. reference:參考某一資源id。

(1)屬性定義:

background" format = "reference" />

(2)屬性使用:

android:layout_width = "42dip"

android:layout_height = "42dip"

android:background = "@drawable/id"

2. color:顏色值。

(1)屬性定義:

textcolor" format = "color" />

(2)屬性使用:

android:layout_width = "42dip"

android:layout_height = "42dip"

android:textcolor

= "#00ff00"

3. boolean:布林值。

(1)屬性定義:

focusable" format = "boolean" />

(2)屬性使用:

android:layout_width = "42dip"

android:layout_height = "42dip"

android:focusable = "true"

4. dimension:尺寸值。

(1)屬性定義:

layout_width" format = "dimension" />

(2)屬性使用:

android:layout_width = "42dip"

android:layout_height = "42dip"

5. float:浮點值。

(1)屬性定義:

fromalpha" format = "float" />

toalpha" format = "float" />

(2)屬性使用:

fromalpha = "1.0"

android:toalpha = "0.7"

6. integer:整型值。

(1)屬性定義:

frameduration" format="integer" />

framescount" format="integer" />

(2)屬性使用:

xmlns:android = "" 

android:drawable = "@drawable/id" 

android:pivotx = "50%" 

android:pivoty = "50%" 

android:framescount = "12" 

android:frameduration = "100"

7. string:字串。

(1)屬性定義:

apikey" format = "string" />

(2)屬性使用:

apikey = "0jokq80od1jl9c6haja99ugxcris2cgjko_bc_g"

8. fraction:百分數。

(1)屬性定義:

pivotx" format = "fraction" />

pivoty" format = "fraction" />

(2)屬性使用:

xmlns:android = ""

android:interpolator = "@anim/動畫id"

android:fromdegrees = "0"

android:todegrees = "360"

android:pivotx = "200%"

android:pivoty = "300%"

android:duration = "5000"

android:repeatmode = "restart"

android:repeatcount = "infinite"

9. enum:列舉值。

(1)屬性定義:

orientation">

(2)屬性使用:

xmlns:android = ""

android:orientation = "vertical"

android:layout_width = "fill_parent"

android:layout_height = "fill_parent"

>

10. flag:位或運算。

(1)屬性定義:

windowsoftinputmode">

(2)屬性使用:

注意:

屬性定義時可以指定多種型別值。

(1)屬性定義:

background" format = "reference|color" />

(2)屬性使用:

android:layout_width = "42dip"

android:layout_height = "42dip"

android:background = "@drawable/id|#00ff00"

安卓自定義XML屬性attrs

attrs看字面意思就是一組屬性的集合,那attrs有什麼用呢,在自定義view的時候,一般會自定義一些屬性,通過構造方法中attributeset引數的封裝,讓我們能夠獲取到為view配置的屬性。自定義屬性 1.定義對應的屬性 在values資料夾下新建乙個attar custom.xml檔案 f...

安卓自定義view繪製尺寸

我們知道view在螢幕上顯示出來要先經過measure和layout.在呼叫onmeasure int widthspec,int heightspec 方法時,要涉及到measurespec的使用,measurespec有3種模式分別是unspecified,exactly和at most,那麼這...

安卓中自定義控制項顯示樣式

1 扁平化控制項的樣式如下 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.2 一般控制項的樣式如下 android startcolor ff8c00 android endcolor ffffff android angle 90 android wid...