Android-View自定义属性-简化写法

一.声明属性类型(res/values/attrs.xml)


1.自定义属性正式写法,必须有此步骤,属性类型多样(int,float,boolean,enum....)
2.自定义属性简化写法,可忽略此步骤,但属性类型只有字符串

<resources> 
    <declare-styleable name="decAttrs">
        <attr name="name" format="string" />
        <attr name="state" format="boolean" />        
    </declare-styleable>
</resources>

二.使用属性(res/layout/layoutxxx.xml)


<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    
名字空间在Android Studio可用res-auto,而在Eclipse中用http://schemas.android.com/res/apk/包名
    xmlns:myAttr="http://schemas.android.com/apk/res-auto" 
    
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <com.xxx.MyView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        
    1.自定义属性正式写法,属性类型多样(int,float,boolean,enum....)
        myAttr:name="abcde"
        myAttr:state="true"
        
    2.自定义属性简化写法,可忽略步骤一,但属性类型只有字符串
        simpleName="abcde"/>
        
</RelativeLayout>

三.在java中获取xml属性


public class MyView extends View{
    
    public MyView(Context context, AttributeSet attrs) {
        super(context, attrs);
        
        // 1.自定义属性正式写法, 属性类型多样(int,float,boolean,enum....)
        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyToggleBtn);     
        int count = ta.getIndexCount();
        for (int i = 0; i < count; i++) {           
            int itemId = ta.getIndex(i);
            switch (itemId) {
            case R.styleable.name:
                name = ta.getString(itemId);                    
                break;
            case R.styleable.state:
                state = ta.getBoolean(itemId, false);               
                break;
            }           
        }
        
        // 2.自定义属性简化写法, 可忽略步骤一, 属性类型只有字符串
        String testAttrs = attrs.getAttributeValue(null, "simpleName");

    }
}

简书: http://www.jianshu.com/p/b03ef5fab122
CSDN博客: http://blog.csdn.net/qq_32115439/article/details/72670139
GitHub博客:http://lioil.win/2017/05/23/Android_View_attr.html
Coding博客:http://c.lioil.win/2017/05/23/Android_View_attr.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容