属性的设置与使用

为了将某些公用的View抽取成通用的View,我们需要用到自定义View,而且一般情况下,为了方便快捷,我们需要在布局文件中就设置好值,所以我们需要学会运用属性。接下来就让我们一起进入实战演练一番吧!

案例:比如说我们编写一个ShopCheckItem类,继承于RelativeLayout,用来作为自定义的View,那么我们需要执行以下几个步骤:

编写布局文件

首先我们需要编写布局文件,不要问为什么,自定义View的办法有很多种,本文只讲这种办法,慢慢看你就懂了!

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="20dp"
    android:paddingRight="20dp">

    <com.showjoy.view.SHIconFontTextView
        android:id="@+id/view_shop_check_item_icon"
        android:layout_width="32dp"
        android:layout_height="32dp"/>

    <TextView
        android:id="@+id/view_shop_check_item_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="5dp"
        android:layout_toRightOf="@id/view_shop_check_item_icon"
        android:textColor="@color/black"
        android:textSize="16sp" />

    <ImageView
        android:id="@+id/view_shop_check_item_selected"
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:layout_alignParentRight="true"/>

</RelativeLayout>

自定义属性

接着根据布局,发现我们需要这样一些属性,如:icon、name、selected。于是我们就可以在styles.xml文件中编写自定义的属性了,具体代码如下所示:

<declare-styleable name="ShopCheckItem">
    <attr name="shop_check_item_icon" format="string" />
    <attr name="shop_check_item_name" format="string" />
    <attr name="shop_check_item_name_color" format="color" />
    <attr name="shop_check_item_selected" format="boolean" />
</declare-styleable>

自定义View

编写好属性后,我们就可以开始自定义view的编写了,一般包括以下几个步骤:

使用inflate方式将布局转换为View

找到布局文件中得控件即findViewById

获取在布局文件中自定义属性的值

根据自定义属性的值初始化控件

暴露接口

注意:接口不一定是interface,只要是提供给别人用的,就算是一个public方法也是接口,如果不清楚,可以查看这篇文章:接口回调

所以,完整代码如下所示:

package com.showjoy.shop.common.view;

import android.content.Context;
import android.content.res.TypedArray;
import android.text.TextUtils;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.showjoy.shop.R;
import com.showjoy.view.SHIconFontTextView;

/**
 * Created by qingfeng on 7/20/16.
 */
public class ShopCheckItem extends RelativeLayout {

    private SHIconFontTextView viewShopCheckItemIcon;
    private TextView viewShopCheckItemName;
    private ImageView viewShopCheckItemSelected;

    public ShopCheckItem(Context context) {
        super(context);
        init(context, null);
    }

    public ShopCheckItem(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public ShopCheckItem(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context, attrs);
    }


    private void init(Context context, AttributeSet attrs) {
        inflate(context, R.layout.view_pay_method, this);

        viewShopCheckItemIcon = (SHIconFontTextView) findViewById(R.id.view_shop_check_item_icon);
        viewShopCheckItemName = (TextView) findViewById(R.id.view_shop_check_item_name);
        viewShopCheckItemSelected = (ImageView) findViewById(R.id.view_shop_check_item_selected);

        if (null != attrs) {
            TypedArray typeArray = context.obtainStyledAttributes(attrs, R.styleable.ShopCheckItem);

            String icon = typeArray.getString(R.styleable.ShopCheckItem_shop_check_item_icon);
            if (!TextUtils.isEmpty(icon)) {
                viewShopCheckItemIcon.setText(icon);
            }
            String name = typeArray.getString(R.styleable.ShopCheckItem_shop_check_item_name);
            if (!TextUtils.isEmpty(name)) {
                viewShopCheckItemName.setText(name);
            }
            int color = typeArray.getColor(R.styleable.ShopCheckItem_shop_check_item_name_color,
                    context.getResources().getColor(R.color.grey5));
            viewShopCheckItemName.setTextColor(color);
            boolean selected = typeArray.getBoolean(R.styleable.ShopCheckItem_shop_check_item_selected, false);
            if (selected) {
                viewShopCheckItemSelected.setImageResource(R.mipmap.view_shop_check_item_selected);
            } else {
                viewShopCheckItemSelected.setImageResource(R.drawable.view_shop_check_item_unselected);
            }
            typeArray.recycle();
        }
    }

    public void setSelected(boolean selected) {
        if (selected) {
            viewShopCheckItemIcon.setTextColor(getContext().getResources().getColor(R.color.black));
            viewShopCheckItemName.setTextColor(getContext().getResources().getColor(R.color.black));
            viewShopCheckItemSelected.setImageResource(R.mipmap.view_shop_check_item_selected);
        } else {
            viewShopCheckItemIcon.setTextColor(getContext().getResources().getColor(R.color.grey5));
            viewShopCheckItemName.setTextColor(getContext().getResources().getColor(R.color.grey5));
            viewShopCheckItemSelected.setImageResource(R.drawable.view_shop_check_item_unselected);
        }
    }

}

总结

是不是很简单,自定义View就是这么简单,当然自定义View不止这么一种方式咯,大家可以自行探索,然后在下方评论区域告诉我,蟹蟹~😄

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

相关阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 176,659评论 25 709
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 136,188评论 19 139
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 14,752评论 4 61
  • 眼前的这一幕让我呆住了,吴凌月,被踩在了脚下。 而踩着他的。是苗天华。 娱乐场里,每一个人都盯着那边。我咕噜了一下...
    浮生万梦星耀烛天阅读 4,170评论 0 1
  • 【手写爱情绘本7.0】生活中难免有着不如意,是我们太脆弱,还是我们强硬。脆弱时,就好像嫩叶上的露水一样,摇摇欲坠:...
    主播亚东阅读 1,436评论 0 2

友情链接更多精彩内容