亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Android View自定義參數declare-styleable怎么使用

小億
136
2024-01-17 02:42:52
欄目: 編程語言

在Android中,可以使用declare-styleable來定義自定義View的屬性。declare-styleable是一個XML標簽,用于定義自定義View的屬性集合。

以下是declare-styleable的使用步驟:

  1. res/values/attrs.xml文件中創建一個declare-styleable標簽,例如:
<resources>
    <declare-styleable name="MyCustomView">
        <attr name="titleText" format="string" />
        <attr name="subtitleText" format="string" />
        <attr name="titleTextColor" format="color" />
        <attr name="subtitleTextColor" format="color" />
    </declare-styleable>
</resources>
  1. 在自定義的View類中,使用obtainStyledAttributes方法獲取屬性值,例如:
public class MyCustomView extends View {
    private String titleText;
    private String subtitleText;
    private int titleTextColor;
    private int subtitleTextColor;
    
    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyCustomView);
        
        titleText = a.getString(R.styleable.MyCustomView_titleText);
        subtitleText = a.getString(R.styleable.MyCustomView_subtitleText);
        titleTextColor = a.getColor(R.styleable.MyCustomView_titleTextColor, Color.BLACK);
        subtitleTextColor = a.getColor(R.styleable.MyCustomView_subtitleTextColor, Color.GRAY);
        
        a.recycle();
    }
    
    // ...
}

在上面的示例中,obtainStyledAttributes方法獲取到了在attrs.xml中定義的屬性值,并將其賦值給titleTextsubtitleTexttitleTextColorsubtitleTextColor

  1. 在布局文件中使用自定義View,并設置屬性值,例如:
<com.example.MyCustomView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:titleText="Title"
    app:subtitleText="Subtitle"
    app:titleTextColor="#FF0000"
    app:subtitleTextColor="#00FF00" />

在上面的示例中,通過app:前綴來設置自定義屬性的值。

這樣,就可以通過declare-styleable來定義和使用自定義View的屬性了。

0
高州市| 沙河市| 泰顺县| 江西省| 常熟市| 姜堰市| 湘潭市| 水城县| 绥德县| 大兴区| 辽阳市| 霍林郭勒市| 华蓥市| 枝江市| 安徽省| 平塘县| 高要市| 宁强县| 鹤峰县| 榆社县| 宝兴县| 怀柔区| 洪雅县| 乌海市| 汝阳县| 额敏县| 乌拉特后旗| 株洲市| 佛学| 五大连池市| 南涧| 兴城市| 博兴县| 张家界市| 六盘水市| 德令哈市| 赤城县| 昭平县| 富民县| 增城市| 忻城县|