2012-11-02 50 views
1

在自定义视图中,我可以从AttributeSet中获取自定义attrs值(如下所示)。但是,我如何获得Android属性?例如,我如何访问android:background或android:text? android.R.styleable是不允许的。从AttributeSet获取Android样式属性

<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(); 
} 

编辑:这是标准的方式吗?

final String xmlns="http://schemas.android.com/apk/res/android"; 
    int xmlRes = attrs.getAttributeResourceValue(xmlns, "background", -1); 
    String xmlText = attrs.getAttributeValue(xmlns, "text"); 
+0

不能确定,但​​是如果你使用的 “android.R.attr.text” 或 “android.R.attr.background”,而不是“INT xmlRes = ATTRS。 getAttributeResourceValue(xmlns,“background”,-1)“? – nfirex

回答

9

我想我们会用这个去:

final String xmlns="http://schemas.android.com/apk/res/android"; 
int xmlRes = attrs.getAttributeResourceValue(xmlns, "background", -1); 
String xmlText = attrs.getAttributeValue(xmlns, "text"); 
+0

如果你不使用硬编码文本,而是使用字符串引用,那么使用文本将返回id而不是文本。 – for3st

0

正如comment提到的,它不是这样做的正规途径。此外,这实际上只适用于硬编码的字符串。 从android source code for Preference class样品可以帮助:

TypedArray a = context.obtainStyledAttributes(attrs, 
       com.android.internal.R.styleable.Preference, defStyle, 0); 
     for (int i = a.getIndexCount(); i >= 0; i--) { 
      int attr = a.getIndex(i); 
      switch (attr) { 
       ... 
       case com.android.internal.R.styleable.Preference_key: 
        mKey = a.getString(attr); 
        break; 
       ... 
      } 
+0

不幸的是,“com.android.internal.R.styleable。*”资源是隐藏的,所以不能在Android源代码之外使用。我使用了类似user123321给出的答案。 – Kasium