浅析Android手机卫士自定义控件的属性
推荐阅读:浅析android手机卫士关闭自动更新
上一节完成的自定义组合控件,灵活性不够,控件的显示信息上,仿照系统属性,自定义自己的属性
上一节组合控件settingitemview中有三个控件,分别是textview大标题,textview描述,checkbox复选框
自定义属性 tsh:title=”大标题” 和tsh:desc_on=”小标题开启”,tsh:desc_off=”小标题关闭”
添加命名空间,xmlns:tsh=”http://schemas.android.com/apk/res/包名"
在res/values/目录下创建 attrs.xml文件
添加节点 <declare-styleable name=”textview”>
节点下添加节点<attr name=”title” format=”string”/>,添加其他两个属性的节点
在布局文件使用的时候,会调用带有两个参数的构造方法
在这个构造方法里面,会传递一个attributeset对象
调用attributeset对象的getattributevalue()方法,得到属性值,参数:索引位置,不推荐
调用attributeset对象的getattributevalue(namespace,name)方法,参数:命名空间,属性名
调用textview对象的settext()方法,直接给设置进去
描述部分,在setchecked()方法里面,判断,再设置
settingitemview.java
package com.qingguow.mobilesafe.ui; import android.content.context; import android.util.attributeset; import android.view.view; import android.widget.checkbox; import android.widget.relativelayout; import android.widget.textview; import com.qingguow.mobilesafe.r; public class settingitemview extends relativelayout { private textview tv_title; private textview tv_desc; private checkbox cb_status; private string desc_on; private string desc_off; /** * 初始化view对象 * @param context */ private void initview(context context) { view.inflate(context, r.layout.setting_item_view, this); cb_status=(checkbox) this.findviewbyid(r.id.cb_status); tv_desc=(textview) this.findviewbyid(r.id.tv_desc); tv_title=(textview) this.findviewbyid(r.id.tv_title); } /** * 判断是否选中 * @return */ public boolean ischecked(){ return cb_status.ischecked(); } /** * 设置是否选中 * @param status */ public void setchecked(boolean status){ if(status){ tv_desc.settext(desc_on); }else{ tv_desc.settext(desc_off); } cb_status.setchecked(status); } /** * 设置显示文本 * @param text */ public void setdesc(string text){ tv_desc.settext(text); } public settingitemview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); initview(context); } public settingitemview(context context, attributeset attrs) { super(context, attrs); initview(context); //获取传递的属性 string title=attrs.getattributevalue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "title"); tv_title.settext(title); desc_on=attrs.getattributevalue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "desc_on"); desc_off=attrs.getattributevalue("http://schemas.android.com/apk/res/com.qingguow.mobilesafe", "desc_off"); } public settingitemview(context context) { super(context); initview(context); } }
activity_setting.xml
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tsh="http://schemas.android.com/apk/res/com.qingguow.mobilesafe" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <textview android:layout_width="match_parent" android:layout_height="40dp" android:background="#ccc" android:gravity="center" android:text="设置中心" android:textsize="20sp" /> <com.qingguow.mobilesafe.ui.settingitemview tsh:title="设置自动更新" tsh:desc_on="设置自动更新开启" tsh:desc_off="设置自动更新关闭" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/siv_item"> </com.qingguow.mobilesafe.ui.settingitemview> </linearlayout>
attrs.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="textview"> <attr name="title" format="string" /> <attr name="desc_on" format="string" /> <attr name="desc_off" format="string" /> </declare-styleable> </resources>
以上是针对android手机卫士自定义控件的属性相关介绍,希望对大家有所帮助!
下一篇: Java线程等待用法实例分析