AttributeSet是Android的一個類,用于獲取和處理XML中的屬性集合。在Android開發(fā)中,我們經(jīng)常需要在XML中定義一些自定義屬性,然后在Java代碼中獲取和使用這些屬性。這時就可以使用AttributeSet來獲取XML中定義的屬性。
使用AttributeSet的步驟如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.MyCustomView
android:id="@+id/customView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:customAttribute="123" />
</LinearLayout>
public class MyCustomView extends View {
private int customAttribute;
public MyCustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyCustomView);
customAttribute = typedArray.getInt(R.styleable.MyCustomView_customAttribute, 0);
typedArray.recycle();
}
}
在上面的代碼中,我們通過context.obtainStyledAttributes(attrs, R.styleable.MyCustomView)
方法獲取TypedArray對象,然后使用typedArray.getInt()
方法獲取自定義屬性的值。
<com.example.MyCustomView
android:id="@+id/customView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:customAttribute="123" />
在上面的代碼中,我們使用了app:customAttribute
來設置自定義屬性的值。
通過上述步驟,就可以在Java代碼中使用AttributeSet獲取和使用XML中定義的屬性了。