溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android怎么實現(xiàn)自定義View中attrs.xml

發(fā)布時間:2022-04-08 15:28:23 來源:億速云 閱讀:224 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹了Android怎么實現(xiàn)自定義View中attrs.xml的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Android怎么實現(xiàn)自定義View中attrs.xml文章都會有所收獲,下面我們一起來看看吧。

 Android自定義View中attrs.xml的實例詳解

我們在自定義View的時候通常需要先完成attrs.xml文件

在values中定義一個attrs.xml 然后添加相關(guān)屬性

<?xml version="1.0" encoding="utf-8"?>
<resources>
  //自定義屬性名,定義公共屬性
  <attr name="titleText" format="string"/>
  <attr name="titleTextSize" format="dimension"/>
  <attr name="titleTextColor" format="color"/>
  <attr name="image" format="reference"/>
  <attr name="imageScaleType" >
    <enum name="fillXY" value="0"/>
    <enum name="center" value="1"/>
  </attr>

  //自定義控件的主題樣式
  <declare-styleable name="CustomImageView">
    <attr name="titleText" />
    <attr name="titleTextSize" />
    <attr name="titleTextColor" />
    <attr name="image" />
    <attr name="imageScaleType" />
  </declare-styleable>


</resources>

reference:參考某一資源ID。

定義:

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

使用:

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

color:顏色值

定義:

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

使用:

<TextView 
          android:layout_width = "42dip" 
          android:layout_height = "42dip" 
          android:textColor = "#00FF00" 
          />

boolean:布爾值

定義:

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

使用:

<Button 
          android:layout_width = "42dip" 
          android:layout_height = "42dip" 
          android:focusable = "true"/>

dimension:尺寸值

定義:

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

使用:

<Button 
          android:layout_width = "42dip" 
          android:layout_height = "42dip" 
         />

float:浮點值

定義:

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

使用:

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

integer:整型值

定義:

<declare-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" /> 
</declare-styleable>

使用:

<rotate 
         xmlns:android = "http://schemas.android.com/apk/res/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" 
        />

enum:枚舉值

定義:

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

使用:

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

flag:位或運算

<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>      
lt;/declare-styleable>

使用:

<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>

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

定義:

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

使用:

<ImageView 
    android:layout_width = "42dip" 
    android:layout_height = "42dip" 
    android:background = "@drawable/圖片ID|#00FF00" 
    />

關(guān)于“Android怎么實現(xiàn)自定義View中attrs.xml”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Android怎么實現(xiàn)自定義View中attrs.xml”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI