Android中怎么自定义控件的declare-styleable属性
要自定义控件的declare-styleable属性,需要在res/values/attrs.xml文件中定义属性,然后在自定义控件的构造方法中获取这些属性。
- 在res/values/attrs.xml文件中定义自定义控件的属性,例如:
<resources><declare-styleable name="CustomView"><attr name="customText" format="string" /><attr name="customTextColor" format="color" /><attr name="customTextSize" format="dimension" /></declare-styleable></resources>
- 在自定义控件的构造方法中获取这些属性,例如:
public class CustomView extends View {private String customText;private int customTextColor;private float customTextSize;public CustomView(Context context, AttributeSet attrs) {super(context, attrs);TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomView);customText = a.getString(R.styleable.CustomView_customText);customTextColor = a.getColor(R.styleable.CustomView_customTextColor, Color.BLACK);customTextSize = a.getDimension(R.styleable.CustomView_customTextSize, 12);a.recycle();}// 然后可以在自定义控件中使用这些属性}
这样就可以在布局文件中使用自定义控件并设置这些自定义属性了,例如:
<com.example.CustomViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"app:customText="Hello World"app:customTextColor="@color/colorAccent"app:customTextSize="18sp" />
上一篇:Android ExpandableListView的使用方法是什么
下一篇:Java中的反射机制是什么
android
winlogins.exe是什么文件?winlogins.exe是不是病毒
winsock2.6.exe是什么文件?winsock2.6.exe是不是病毒
WinDefendor.dll是什么文件?WinDefendor.dll是不是病毒
系统目录是什么文件?系统目录是不是病毒
wholove.exe是什么文件?wholove.exe是不是病毒
winn.ini是什么文件?winn.ini是不是病毒
w6oou.dll是什么文件?w6oou.dll是不是病毒
winduxzawb.exe是什么文件?winduxzawb.exe是不是病毒
wuammgr32.exe是什么文件?wuammgr32.exe是不是病毒
windiws.exe是什么文件?windiws.exe是不是病毒