declare-styleable是用于定義自定義屬性的一種方式。
首先,在res/values目錄下創建一個attrs.xml文件,用于定義自定義屬性。示例代碼如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyCustomView">
<attr name="customAttribute" format="string" />
<attr name="customColor" format="color" />
<attr name="customBoolean" format="boolean" />
</declare-styleable>
</resources>
在這個例子中,我們定義了一個名為MyCustomView的styleable,包含了三個屬性:customAttribute、customColor和customBoolean。
然后,在自定義View的構造函數中,可以通過TypedArray來獲取這些自定義屬性的值。示例代碼如下:
public class MyCustomView extends View {
private String customAttribute;
private int customColor;
private boolean customBoolean;
public MyCustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyCustomView);
customAttribute = a.getString(R.styleable.MyCustomView_customAttribute);
customColor = a.getColor(R.styleable.MyCustomView_customColor, Color.BLACK);
customBoolean = a.getBoolean(R.styleable.MyCustomView_customBoolean, false);
a.recycle();
// 進行其他初始化操作
}
// 其他自定義View的代碼
}
在這個例子中,我們通過TypedArray的getXXX()方法來獲取自定義屬性的值,并提供了默認值(在這里是Color.BLACK和false)。
最后,在布局文件中使用自定義View時,可以通過XML屬性來設置自定義屬性的值。示例代碼如下:
<com.example.MyCustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:customAttribute="Hello World"
app:customColor="@color/red"
app:customBoolean="true" />
在這個例子中,我們使用了app命名空間來引用自定義屬性,并設置了相應的值。
以上就是declare-styleable的基本用法。可以根據需要定義更多的自定義屬性,并在自定義View中使用它們。