android自定义Attributes

一:在values里新建一个resource file:

android自定义Attributes_第1张图片

二:在自定义view中通过 context.obtainStyledAttributes(attrs, R.styleable.attrSample) 方法获取。

TypedArray ta=context.obtainStyledAttributes(attrs, R.styleable.attrSample) ;

三:在xml布局中使用该View,因为使用到自定义的参数,因此会在布局根目录进行引用:

xmlns:app

你可能感兴趣的:(android自定义Attributes)