用TypedArray给自定义控件配置属性

本文介绍了一个自定义控件TitleView的实现方法,包括如何通过TypedArray获取属性值并设置到TextView和ImageView上。此外,还展示了如何在XML布局文件中使用该自定义控件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

(仅仅只是整理,以后用到直接来翻就行了)
比如有这样一个自定义控件(layout文件就不看了)

public class TitleView extends LinearLayout {
    public ImageView themeTitleLeft;
    private TextView themeTitle;
    private ImageView themeTitleRight;

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

    public TitleView(final Context context, AttributeSet attrs) {
        super(context, attrs);
        inflate(context, R.layout.theme_title, this);

        themeTitle = (TextView) findViewById(R.id.theme_title);
        themeTitleLeft = (ImageView) findViewById(R.id.theme_title_left);
        themeTitleRight = (ImageView) findViewById(R.id.theme_title_right);

        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.title);
        String name = ta.getString(R.styleable.title_name);
        themeTitle.setText(name);
        ta.recycle();
    }
}

那R.styleable.title和R.styleable.title_name又是怎么配置的呢?
当然是在values文件夹下新建attrs.xml

    <declare-styleable name="title">
        <attr name="name" format="string"/>
    </declare-styleable>

生成TypedArray是用的declare-styleable的name,生成对应的string是在两个name中加下划线
用法

<com.*******.TitleView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        app:name="订单"/>//-----------------添加app:
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值