use*_*321 1 android android-layout
在自定义视图中,我可以从AttributeSet获取自定义attrs值(如下所示).但是我如何获得Android属性?例如,我如何访问android:background或android:text?不允许使用android.R.styleable.
<mine.custom.RangeSeekBar
custom:selectedMinValue="2"
custom:selectedMaxValue="4"
android:background="@drawable/my_skin" />
public RangeSeekBar(Context context, AttributeSet attrs, int defStyle) {
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RangeSeekBar, defStyle, 0);
selectedMinValue = a.getInt(R.styleable.RangeSeekBar_selectedMinValue, selectedMinValue);
selectedMaxValue = a.getInt(R.styleable.RangeSeekBar_selectedMaxValue, selectedMaxValue);
minRangeValue = a.getInt(R.styleable.RangeSeekBar_minRangeValue, minRangeValue);
maxRangeValue = a.getInt(R.styleable.RangeSeekBar_maxRangeValue, maxRangeValue);
a.recycle();
}
Run Code Online (Sandbox Code Playgroud)
编辑:这是标准方式吗?
final String xmlns="http://schemas.android.com/apk/res/android";
int xmlRes = attrs.getAttributeResourceValue(xmlns, "background", -1);
String xmlText = attrs.getAttributeValue(xmlns, "text");
Run Code Online (Sandbox Code Playgroud)
我想我们会用这个:
final String xmlns="http://schemas.android.com/apk/res/android";
int xmlRes = attrs.getAttributeResourceValue(xmlns, "background", -1);
String xmlText = attrs.getAttributeValue(xmlns, "text");
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
4079 次 |
最近记录: |