在Android中,可以使用以下方法將AttributeSet傳遞給自定義視圖:
public class CustomView extends View {
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
// 進行其他初始化操作
}
}
LayoutInflater inflater = LayoutInflater.from(context);
CustomView customView = (CustomView) inflater.inflate(R.layout.custom_view, parentView, false);
在布局文件中,可以通過在根視圖上設置自定義屬性來傳遞AttributeSet。
<com.example.CustomView
android:layout_width="match_parent"
android:layout_height="wrap_content"
custom:customAttribute="value" />
TypedArray typedArray = getContext().getTheme().obtainStyledAttributes(attrs, R.styleable.CustomView, 0, 0);
int customAttributeValue = typedArray.getInt(R.styleable.CustomView_customAttribute, defaultValue);
typedArray.recycle();
在這種情況下,需要在自定義視圖的attr.xml文件中定義自定義屬性。
<resources>
<declare-styleable name="CustomView">
<attr name="customAttribute" format="integer" />
</declare-styleable>
</resources>