Android自定義屬性:format解析

在values文件下有一個(gè)文件就是attrs.xml,這是R.attr和R.styleable類的定義文件刽沾。attrs.xml中定義了每個(gè)view的可用的屬性卜朗,例如使用android:textAppearance就是在attrs.xml中定義了<attr name="textAppearance" format="reference" />焰手,那麼這里點(diǎn)format="reference"使什么意思呢鸳碧。
1是尖、reference :參考某一資源ID
(1)屬性定義:

<declare-styleable name="名稱">
  <attr name = "background" format="reference" />
</declare-styleable>

(2)屬性使用:

 <ImageView
      android:layout_width = "42dp"
      android:layout_height = "42dp"
      android:background = "@drawable/圖片ID" />

2瞒御、color:顏色值
(1)屬性定義:

<declare-styleable name="名稱">
  <attr name = "textColor" format="color" />
</declare-styleable>

(2)屬性使用:

 <TextView
      android:layout_width = "42dp"
      android:layout_height = "42dp"
      android:textColor = "#ABABAB" />

3羽德、boolean:布爾值
(1)屬性定義:

<declare-styleable name="名稱">
  <attr name = "focusable" format="boolean" />
</declare-styleable>

(2)屬性使用:

 <TextView
      android:layout_width = "42dp"
      android:layout_height = "42dp"
      android:focusable = "true" />

4几莽、dimension:尺寸值
(1)屬性定義:

<declare-styleable name="名稱">
  <attr name = "layout_width" format="dimension" />
</declare-styleable>

(2)屬性使用:

 <TextView
      android:layout_width = "42dp"
      android:layout_height = "42dp" />

5、float:浮點(diǎn)值
(1)屬性定義:

<declare-styleable name="AlphaAnimation">
  <attr name = "fromAlpha" format="float" />
  <attr name = "toAlpha" format="float"/>
</declare-styleable>

(2)屬性使用:

 <alpha
      android:fromAlpha= "1.0"
      android:toAlpha = "0.7" />

6宅静、integer:整形值
(1)屬性定義:

<declare-styleable name="AnimatedRotateDrawable">
  <attr name = "visible"/>
  <attr name = "fromDuration  " format="integer"/>
  <attr name = "fromsCount  " format="integer"/>
  <attr name = "pivotX"/>
  <attr name = "pivotY"/>
  <attr name = "drawable"/>
</declare-styleable>

(2)屬性使用:

 <animated-rotate
      xmlns:android = "http://schemas.android.com/apk/res/anddroid"
      android:drawable= "@drawable/圖片ID"
      android:pivotX = "50%"
      android:pivotY = "50%"
      android:framesCount = "12"
      android:frameDuration= "100" />

7章蚣、string:字符串
(1)屬性定義:

<declare-styleable name = "MapView">
    <attr name = "apiKey" format = "string" />
</declare-styleable>

(2)屬性使用:

<com.google.android.maps.MapView
   android:layout_width = "fill_parent"
   android:layout_height = "fill_parent"
   android:apiKey = "0jOkQ80oD1JL9C6HAja99uGXCRiS2CGjKO_bc_g" />

8、fraction:百分?jǐn)?shù)
(1)屬性定義:

<decare-styleable name="RotateDrawable">
<attr name = "visible" />
<attr name = "fromDegrees" format = "float" />
<attr name = "toDegrees" format = "float" />
<attr name = "pivotX" format = "fraction" />
<attr name = "pivotY" format = "fraction" />
<attr name = "drawable" />
</decare-styleable>

(2)屬性使用:

<rotate
  xmlns:android = "[http://schemas.android.com/apk/res/android](http://schemas.android.com/apk/res/android)" 
  android:interpolator = "@anim/動(dòng)畫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)屬性定義:

<declare-styleable name="名稱">
    <attr name="orientation">
         <enum name="horizontal" value="0" />
         <enum name="vertical" value="1" />
    </attr>            
</declare-styleable>

(2)屬性使用:

<LinearLayout
   xmlns:android = "http://schemas.android.com/apk/res/android"
   android:orientation = "vertical"
   android:layout_width = "fill_parent"
   android:layout_height = "fill_parent">
</LinearLayout>

10究驴、flag:位或運(yùn)算
(1)屬性定義:

<declare-styleable name="名稱">
    <attr name="windowSoftInputMode">
         <flag name = "stateUnspecified" value = "0" />
         <flag name = "stateUnchanged" value = "1" />
         <flag name = "stateHidden" value = "2" />
         <flag name = "stateAlwaysHidden" value = "3" />
         <flag name = "stateVisible" value = "4" />
         <flag name = "stateAlwaysVisible" value = "5" />
         <flag name = "adjustUnspecified" value = "0x00" />
         <flag name = "adjustResize" value = "0x10" />
         <flag name = "adjustPan" value = "0x20" />
         <flag name = "adjustNothing" value = "0x30" />
    </attr>         
</declare-styleable>

(2)屬性使用:

 <activity
    android:name = ".StyleAndThemeActivity"
    android:label = "@string/app_name"
    android:windowSoftInputMode = "stateUnspecified | stateUnchanged | stateHidden">
    <intent-filter>
        <action android:name = "android.intent.action.MAIN" />
        <category android:name = "android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

注意:

 屬性定義時(shí)可以指定多種類型值。

(1)屬性定義:

<declare-styleable name = "名稱">
  <attr name = "background" format = "reference|color" />
</declare-styleable>

(2)屬性使用:

<ImageView
  android:layout_width = "42dip"
  android:layout_height = "42dip"
  android:background = "@drawable/圖片ID|#00FF00" />
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末匀伏,一起剝皮案震驚了整個(gè)濱河市洒忧,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌够颠,老刑警劉巖熙侍,帶你破解...
    沈念sama閱讀 206,378評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異履磨,居然都是意外死亡蛉抓,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門剃诅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)巷送,“玉大人,你說(shuō)我怎么就攤上這事矛辕⌒︴耍” “怎么了付魔?”我有些...
    開封第一講書人閱讀 152,702評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)飞蹂。 經(jīng)常有香客問(wèn)我几苍,道長(zhǎng),這世上最難降的妖魔是什么陈哑? 我笑而不...
    開封第一講書人閱讀 55,259評(píng)論 1 279
  • 正文 為了忘掉前任妻坝,我火速辦了婚禮,結(jié)果婚禮上惊窖,老公的妹妹穿的比我還像新娘刽宪。我一直安慰自己,他們只是感情好界酒,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評(píng)論 5 371
  • 文/花漫 我一把揭開白布纠屋。 她就那樣靜靜地躺著,像睡著了一般盾计。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上赁遗,一...
    開封第一講書人閱讀 49,036評(píng)論 1 285
  • 那天署辉,我揣著相機(jī)與錄音,去河邊找鬼岩四。 笑死哭尝,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的剖煌。 我是一名探鬼主播材鹦,決...
    沈念sama閱讀 38,349評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼耕姊!你這毒婦竟也來(lái)了桶唐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤茉兰,失蹤者是張志新(化名)和其女友劉穎尤泽,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體规脸,經(jīng)...
    沈念sama閱讀 43,469評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡坯约,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了莫鸭。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片闹丐。...
    茶點(diǎn)故事閱讀 38,059評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖被因,靈堂內(nèi)的尸體忽然破棺而出卿拴,到底是詐尸還是另有隱情衫仑,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評(píng)論 4 323
  • 正文 年R本政府宣布巍棱,位于F島的核電站惑畴,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏航徙。R本人自食惡果不足惜如贷,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望到踏。 院中可真熱鬧杠袱,春花似錦、人聲如沸窝稿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)伴榔。三九已至纹蝴,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間踪少,已是汗流浹背塘安。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留援奢,地道東北人兼犯。 一個(gè)月前我還...
    沈念sama閱讀 45,501評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像集漾,于是被迫代替她去往敵國(guó)和親切黔。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容