Android获取非自定义属性值

以Spinner的entries属性为例

  1. 创建values/attrs.xml文件,添加下述代码


    
        
    

  1. 获取属性
public AutoSpinner(Context context, AttributeSet attrs) {
    super(context, attrs);
    getAttrs(context, attrs);
}

private void getAttrs(Context context, AttributeSet attrs) {

    TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.app);
    if (ta.hasValue(R.styleable.app_android_entries)) {
        int array = ta.getResourceId(R.styleable.app_android_entries, 0);
        this.array = getResources().getStringArray(array);
    }

    ta.recycle();
}
  1. 在xml使用自定义控件

以上就是获取自定义控件非自定义属性的写法

你可能感兴趣的:(Android获取非自定义属性值)