91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

android自定義控件怎么配置declare-styleable屬性

小億
112
2023-11-10 12:38:59
欄目: 編程語言

要配置自定義控件的屬性,需要使用declare-styleable標簽來定義屬性集合,并在布局文件中使用這些屬性。

首先,在res/values目錄下的attrs.xml文件中定義屬性集合,例如:

<resources>
    <declare-styleable name="MyCustomView">
        <attr name="textColor" format="color" />
        <attr name="textSize" format="dimension" />
        <attr name="showIcon" format="boolean" />
    </declare-styleable>
</resources>

在這個例子中,我們定義了一個名為MyCustomView的屬性集合,并添加了三個屬性:textColortextSizeshowIcon

然后,在自定義控件的布局文件中,可以使用這些屬性。例如:

<com.example.MyCustomView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:textColor="@android:color/black"
    app:textSize="16sp"
    app:showIcon="true" />

在這個例子中,我們使用了自定義控件MyCustomView,并設置了三個屬性的值:textColortextSizeshowIcon

最后,在自定義控件的代碼中,可以通過obtainStyledAttributes方法獲取這些屬性的值。例如:

public class MyCustomView extends View {
    private int textColor;
    private float textSize;
    private boolean showIcon;

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);

        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyCustomView);
        textColor = typedArray.getColor(R.styleable.MyCustomView_textColor, Color.BLACK);
        textSize = typedArray.getDimension(R.styleable.MyCustomView_textSize, 16);
        showIcon = typedArray.getBoolean(R.styleable.MyCustomView_showIcon, false);

        typedArray.recycle();
    }
}

在這個例子中,我們通過obtainStyledAttributes方法獲取了textColortextSizeshowIcon屬性的值,并存儲在相應的成員變量中。

注意:在獲取屬性值后,需要及時調用recycle方法回收TypedArray對象,以避免內存泄漏。

0
滨海县| 湟中县| 县级市| 石景山区| 巴彦淖尔市| 定州市| 通化市| 盖州市| 丰城市| 明溪县| 辛集市| 石棉县| 日照市| 屯门区| 南平市| 互助| 新兴县| 大厂| 同仁县| 安平县| 扶沟县| 丰顺县| 南江县| 华坪县| 水富县| 富平县| 城口县| 韶关市| 嵊泗县| 永清县| 彰化县| 江门市| 东阳市| 黑河市| 北宁市| 尼玛县| 芦溪县| 太谷县| 美姑县| 盐山县| 保康县|