Attr、style在自定义View中的使用

attr、style在Android开发中是必不可少的基础知识,无论是自己开发还是阅读别人的源代码都会遇到。如果这个掌握不好,很难学到别人代码的精华,故想整理一下相关知识点。

  • attr,我的理解是“一些动态属性”,比如:name,name本身可能为不确定的值,所以需要根据不同的场景动态赋值。
  • style,是把一组属性及其对应的值封装在一起,可以简化代码,是代码简洁、易读。>

接下来通过一个完整的实例进行讲解,将通过自定义View实现如图一:

实例.jpg

接下来将通过代码讲解说明实现过程。首先新建一个项目
先在values文件夹下面新建一个attrs文件,值得注意的是,format多个值的用法,可以百度一下,也很好理解。写入如下代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="attrTest">
        <attr name="name" format="string"/><!--姓名-->
        <attr name="age" format="integer"/><!--年龄-->
        <attr name="score" format="float"/><!--分数-->
        <attr name="sex" >                 <!--性别-->
            <enum name="man" value="1"/>
            <enum name="woman" value="2"/>
        </attr>
    </declare-styleable>
</resources>

接着新建一个styles文件,写入代码如下:

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    <style name="customView">
        <item name="name">@string/user_name</item>
        <item name="age">10</item>
        <item name="sex">man</item>
        <item name="score">90.5</item>
    </style>
</resources>

新建一个类继承View,名为:CustomView,注意构造方法的写法,自定义View时构造方法必须要写。具体代码如下:

 /**
     * 绘制的文字
     */
    private String mText;
    private String mText1;
    /**
     * 文字的颜色
     */
    private int mTextColor;
    /**
     * 文字的大小
     */
    private int mTextSize;
    /**
     * 绘制控制文本的范围
     */
    private Rect mBound;

    private Paint mPaint;

    public CustomView(Context context) {
        this(context,null);
    }

    public CustomView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs,0);

    }
    public CustomView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.attrTest,defStyleAttr,0);//最后一个参数是代码默认res。
        float score = typedArray.getFloat(R.styleable.attrTest_score,0);
        int age = typedArray.getInteger(R.styleable.attrTest_age,0);
        String name = typedArray.getString(R.styleable.attrTest_name);
        int sex = typedArray.getInt(R.styleable.attrTest_sex,1);//默认1表示男
        String sexStr = "男";
        if (sex==2) sexStr = "女";
        mText = "姓名:"+name+",性别:"+sexStr;
        mText1 = "年龄:"+age+",分数:"+score;
        mTextColor = Color.BLACK;
        mTextSize = 80;
        mPaint = new Paint();
        mPaint.setTextSize(mTextSize);
        mPaint.setColor(mTextColor);
        //获得绘制文本的宽和高
        mBound = new Rect();
        mPaint.getTextBounds(mText, 0, mText.length(), mBound);
    }
    @Override
    protected void onDraw(Canvas canvas) {
        /**
         * 参数解释:text:待绘制的文字,x:绘制的起点x轴坐标,y:绘制的起点的y轴坐标,Paint:绘画的笔(其有对应的对个属性)。
         */
        canvas.drawText(mText, getWidth() / 2 - mBound.width() / 2, getHeight()/3 + mBound.height() / 2, mPaint);
        canvas.drawText(mText1, getWidth() / 2 - mBound.width() / 2, getHeight() / 2 + mBound.height() / 2, mPaint);
    }

接下来是activity_main,感兴趣的同学可以搜索ConstraintLayout的用法,比RelativeLayout有很多优点,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.android.attrstest.MainActivity">

    <TextView
        android:id="@+id/text_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/black"
        android:text="@string/user_title" />


    <com.android.attrstest.view.CustomView
        android:id="@+id/text_des"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/customView"
        custom:layout_constraintTop_toBottomOf="@+id/text_title"
        android:layout_marginTop="10dp"
        />

</android.support.constraint.ConstraintLayout>

MainActivity代码较为简单,就是调用一下setContentView()方法,

    @BindView(R.id.text_des)
    CustomView text_des;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);


    }

此实例较为简单,只是简单的用法,只有基础的知识打牢,才有助于进一步的提升。
可以点击代码地址,进行clone。

以下为插叙

在我写这个实例的时候,我使用的'com.android.tools.build:gradle:3.0.1',当我使用ButterKnife 8.6.0时,报如下错误:

Error:Unable to find method 'com.android.build.gradle.api.BaseVariant.getOutputs()Ljava/util/List;'.
Possible causes for this unexpected error include:<ul><li>Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
<a href="syncProject">Re-download dependencies and sync project (requires network)</a></li><li>The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.
<a href="stopGradleDaemons">Stop Gradle build processes (requires restart)</a></li><li>Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.</li></ul>In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

多次尝试都还是报错,无奈去官网查看,终于找到解决方案,说是butterknife8.6.0暂时不支持3.0.0,要使用butterknife8.4.0才行。

解决方法如下:

apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.butterknife'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        applicationId "com.android.attrstest"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容