[Android]自定义组件示例:使用attrs.xml文件定制RadioButton

1.在res/values下创建attrs.xml
[html] view plaincopy
<declare-styleable name="MyRadioButton">  
        <attr name="str" format="string"/>  
</declare-styleable>  

MyRadioButton为组件名字,随意起,attr标签定义组件的属性,name对应的是属性名,format是属性的类型,具体可参见《[Android]attrs.xml文件中属性类型format值的格式》。

2.在自定义的组件中使用attrs.xml文件的定义
[java] view plaincopy
public class MyRadioButton extends RadioButton {  
    private String url;  
      
    public MyRadioButton(Context context, AttributeSet attrs) {  
        super(context, attrs);  
        TypedArray taArray = context.obtainStyledAttributes(attrs,R.styleable.MyRadioButton);  
        this.url = taArray.getString(R.styleable.MyRadioButton_str);  
        taArray.recycle();  
    }  
  
    public String getUrl() {  
        return url;  
    }  
  
    public void setUrl(String url) {  
        this.url = url;  
    }  
      
  
}  
a. TypedArray是存放资源R.styleable.MyRadioButton指定的属性集合。
b. 通过getXXX()获取属性值。
c. recycle()结束绑定
3.在布局文件中使用
[html] view plaincopy
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:demo="http://schemas.android.com/apk/res/net.csdn.blog.wxg630815"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    android:orientation="vertical" >  
    <RadioGroup   
       android:layout_width="fill_parent"  
       android:layout_height="wrap_content"  
       >  
        <net.csdn.blog.wxg630815.MyRadioButton  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            android:id="@+id/myradio1"  
            demo:str="1.csdn.net"  
            />  
        <net.csdn.blog.wxg630815.MyRadioButton  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_parent"  
            android:id="@+id/myradio2"  
            demo:str="2.csdn.net"  
            />  
         
   </RadioGroup>  
  
</LinearLayout>  

注意:xmlns:demo="http://schemas.android.com/apk/res/net.csdn.blog.wxg630815"
只有声明这句以后,url属性才会被布局文件识别。net.csdn.blog.wxg630815指的是AndroidManifest.xml文件中manifest元素的package属性值。

使用demo:str给url赋值。

Android 开发attrs.xml 是一个非常重要的文件,它用于定义自定义的属性,可以让我们在布局文件直接使用这些属性。 下面是一个示例 attrs.xml 文件: ```xml <?xml version="1.0" encoding="utf-8"?> <resources> <attr name="myText" format="string" /> <attr name="myTextColor" format="color" /> <attr name="myBackgroundColor" format="color" /> </resources> ``` 这个文件定义了三个自定义属性:myText、myTextColor 和 myBackgroundColor。其,name 属性指定属性的名称,format 属性指定属性的类型。 在布局文件使用自定义属性的方法是: ```xml <com.example.MyView android:layout_width="match_parent" android:layout_height="wrap_content" app:myText="Hello World!" app:myTextColor="@color/red" app:myBackgroundColor="@color/white" /> ``` 在 MyView 类,可以通过如下方法获取这些自定义属性的值: ```java TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyView); String myText = a.getString(R.styleable.MyView_myText); int myTextColor = a.getColor(R.styleable.MyView_myTextColor, Color.BLACK); int myBackgroundColor = a.getColor(R.styleable.MyView_myBackgroundColor, Color.WHITE); a.recycle(); ``` 其,obtainStyledAttributes() 方法获取了这些属性的值,getString() 和 getColor() 方法获取了对应属性的值,recycle() 方法回收 TypedArray 对象。 通过自定义属性,我们可以让布局文件更加简洁明了,代码也更加易于维护。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值