中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android ViewPagerIndicator詳解及實例代碼

發布時間:2020-10-24 23:23:08 來源:腳本之家 閱讀:160 作者:lqh 欄目:移動開發

Android ViewPagerIndicator詳解及實例代碼

關于自定義View的屬性零碎知識

自定義View和自定義屬性的知識不再此提及,這里著重說的是屬性在自定義View中的獲取方式,自定義的屬性如下:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 
  <declare-styleable name="Wisely"> 
    <attr name="wisely_1" format="boolean" /> 
    <attr name="wisely_2" format="boolean" /> 
    <attr name="wisely_3" format="boolean" /> 
    <attr name="wisely_4" format="boolean" /> 
  </declare-styleable> 
   
  <attr name="wisely_out" format="boolean" /> 
 
</resources> 

自定義View的相關代碼如下:

public CustomView(Context context, AttributeSet attrs) { 
  super(context, attrs); 
  TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.Wisely); 
  typedArray.getBoolean(R.styleable.Wisely_wisely_1, true); 
  typedArray.recycle(); 
} 

重點看R.styleable.Wisely,它返回的是一個數組,而R.styleable.Wisely_wisely_1表示的則是數組的索引,它們在R文件中的表示如下:

public static final class attr { 
  public static final int wisely_1 = 0x7f010000; 
 
  public static final int wisely_2 = 0x7f010001; 
 
  public static final int wisely_3 = 0x7f010002; 
 
  public static final int wisely_4 = 0x7f010003; 
 
  public static final int wisely_out = 0x7f010004; 
 
} 
 
public static final class styleable { 
  public static final int[] Wisely = { 0x7f010000, 0x7f010001, 
      0x7f010002, 0x7f010003 }; 
 
  public static final int Wisely_wisely_1 = 0; 
 
  public static final int Wisely_wisely_2 = 1; 
 
  public static final int Wisely_wisely_3 = 2; 
 
  public static final int Wisely_wisely_4 = 3; 
} 

從上面可以看出一點,wisely_out也是attrs.xml中的屬性,不過它是寫在以Wisely命名的標簽之外的,所以并未列入到styleable類的Wisely數組中。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿尔山市| 南部县| 卓资县| 资兴市| 万山特区| 宝丰县| 南昌县| 芮城县| 绥中县| 高陵县| 灵璧县| 银川市| 景德镇市| 桃园县| 沭阳县| 文山县| 兴山县| 中江县| 喀喇沁旗| 察雅县| 新和县| 中超| 绍兴市| 宿州市| 赣州市| 武义县| 新建县| 大石桥市| 青浦区| 新竹市| 新龙县| 屯昌县| 西藏| 神农架林区| 新平| 湘潭县| 睢宁县| 墨竹工卡县| 磐安县| 安塞县| 兰溪市|