zoukankan      html  css  js  c++  java
  • Android自定义的属性的使用




    获取引用类型的属性值

      private void init(Context context, AttributeSet attrs) {
            //int textId = attrs.getAttributeIntValue(NAME_SPACE,"text");
            //String string = getResources().getString(textId);
            //Log.e("UserViewView", "UserViewView init()" + textId);
    
            TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.UserViewView);
    
    
            int resourceId = ta.getResourceId(R.styleable.UserViewView_text, 0);
            String string = getResources().getString(resourceId);
    
            Log.e("UserViewView", "UserViewView init()"+string);
            //回收
            ta.recycle();
        }



        <declare-styleable name="UserViewView">
            <attr name="text" format="reference"/>
    
    
        </declare-styleable>



     TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.registItemView);
            String item_left = typedArray.getString(R.styleable.registItemView_item_left);
            String item_btn_right = typedArray.getString(R.styleable.registItemView_item_btn_right);
            String item_center = typedArray.getString(R.styleable.registItemView_item_center);
            boolean item_btn_right_is_gone =
                    typedArray.getBoolean(R.styleable.registItemView_item_btn_right_is_gone, false);
            boolean item_ib_right_is_gone =
                    typedArray.getBoolean(R.styleable.registItemView_item_ib_right_is_gone, false);
    
            //获取引用类型的值
            int itemBottomResourceId = typedArray.getResourceId(R.styleable.registItemView_item_bottom, 0);
            String item_bottom = context.getString(itemBottomResourceId);
            int item_input_type =
                    typedArray.getInt(R.styleable.registItemView_item_input_type, InputType.TYPE_CLASS_TEXT);
    
            //释放
            typedArray.recycle();









  • 相关阅读:
    aop日志记录
    RocketMQ 启动停止命令
    windows搭建RocketMQ服务
    zTree实战
    springboot 传List参数
    Spring Boot之 Controller 接收参数和返回数据总结(包括上传、下载文件)
    SpringBoot Controller接收参数的几种常用方
    clob大数据转换为多行数据
    oracle dba学习
    TreeNode(包含读出文件里的信息)
  • 原文地址:https://www.cnblogs.com/shaofeer/p/11154393.html
Copyright © 2011-2022 走看看