美文网首页
自定义View_02_(入门篇)自定义属性

自定义View_02_(入门篇)自定义属性

作者: __Y_Q | 来源:发表于2019-11-28 12:08 被阅读0次
    接着上一章,继续来学习自定义View入门篇2 自定义属性
    还是拿上一章的 MyTextView 为例
    1. 到 res/values/目录下新建一个资源文件(xml), 名字为 attrs

      <?xml version="1.0" encoding="utf-8"?>
      <resources>
          <!-- name 最好是自定义View的名字 -->
          <declare-styleable name="MyTextView">
              <!--
               name = 属性名称 ,
               format = 格式
               color = 颜色
               dimension = 宽高/大小
               integer = 数字
               reference = 资源ID
               -->
              <!--    注意  name 名字不能和系统原有的名字冲突    -->
              <attr name="myText" format="string" />
              <attr name="myTextColor" format="color" />
              <attr name="myTextSize" format="dimension" />
              <!--  background   是View自带的,我们不需要去管理,是由View管理的    -->
              <!--        <attr name="myBackground" format="reference|color"/>-->
              <!-- 枚举 -->
              <attr name="myInputType">
                  <enum name="number" value="1" />
                  <enum name="text" value="2" />
                  <enum name="password" value="3" />
              </attr>
          </declare-styleable>
      </resources>
      
    2. 在布局文件中使用.

      <!-- 需要引入命名空间 xmlns:app="http://schemas.android.com/apk/res-auto" -->
      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          xmlns:app="http://schemas.android.com/apk/res-auto"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
      
          <com.view_day02.MyTextView
              android:layout_marginTop="10dp"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              app:myInputType="text"
              app:myTextSize="20sp"
              app:myText="zhangsan"
              android:background="#00FF00"
              app:myTextColor="#000000"/>
      
      </LinearLayout>
      

      xmlns:app中的"app"名字可以随便取

    3. 在自定义控件中获取布局文件中设置的值

    public class MyTextView extends View {
    
    private String mText;
    
        private int mTextSize = 15;
        private int mTextColor = Color.BLACK;
        private int mInputType = 2;
        
        public MyTextView(Context context) {
            this(context,null);
        }
    
        public MyTextView(Context context, @Nullable AttributeSet attrs) {
            this(context, attrs,0);
        }
    
        public MyTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
    
            //获取自定义属性资源文件
            TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyTextView);
            
            mText = typedArray.getString(R.styleable.MyTextView_myText);
            //需要设置一个默认的颜色
            mTextColor = typedArray.getColor(R.styleable.MyTextView_myTextColor, mTextColor);
            //需要设置默认大小
            mTextSize = typedArray.getDimensionPixelSize(R.styleable.MyTextView_myTextSize, sp2px(mTextSize));
            //需要设置默认输入类型
            mInputType = typedArray.getInt(R.styleable.MyTextView_myInputType, 2);
            
            //回收(必须)
            typedArray.recycle();
        }
        
        /**
         * sp 转 px
         * @param sp
         * @return
         */
        private int sp2px(int sp) {
            return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, getResources().getDisplayMetrics());
        }
    }
    

    其实还有好多属性就不列举了, 当我们不知道如何获取属性的时候,可以查看一下源码,比如属性中的那个枚举类型的 inputType,TextView 中也是有这个属性的, 通过查看源码得知他的获取方式如下.

    TextView.java 1277行

    case com.android.internal.R.styleable.TextView_inputType:
        inputType = a.getInt(attr, EditorInfo.TYPE_NULL);
        break;
    

    可以看的出,它是直接获取的 int 值. 然后也是需要传入一个默认的 inputType 类型.

    相关文章

      网友评论

          本文标题:自定义View_02_(入门篇)自定义属性

          本文链接:https://www.haomeiwen.com/subject/imzvwctx.html