024_01自定义控件

1,首先在xml中做好样式:setting_item.xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="60dp" >
 5         <TextView
 6             android:id="@+id/tv_setting_title"
 7             android:layout_width="wrap_content"
 8             android:layout_height="wrap_content"
 9             android:layout_margin="5dp"
10             android:textSize="20sp"
11             />
12         <TextView
13             android:id="@+id/tv_setting_description"
14             android:layout_width="wrap_content"
15             android:layout_height="wrap_content"
16             android:textSize="16sp"
17             android:layout_marginLeft="5dp"
18             android:layout_below="@id/tv_setting_title"
19             />
20         <CheckBox
21              android:id="@+id/cb_settingitem"
22              android:layout_width="wrap_content"
23              android:layout_height="wrap_content"
24              android:layout_alignParentRight="true"
25              android:layout_centerVertical="true"
26              android:clickable="false"
27              android:focusable="false"
28             />
29        <View
30            android:layout_width="fill_parent"
31            android:layout_height="0.5dp"
32            android:background="#000000"
33            android:layout_alignParentBottom="true"
34            />
35
36 </RelativeLayout>

2,新建一个继承自RelativeLayout的类SettingItem,该类就是自定义的控件。

  在构造函数中首先首先使用View的inflate()方法将setting_item.xml布局文件填充到SettingItem中,然后

使用findViewById()就可以找到setting_item.xml中的控件  View v = View.inflate(getContext(), R.layout.setting_item, this);

 在完成第3步自定义控件属性后,然后可在该类中获得如下代码中黄色标注的属性value

 1 package com.cskaoyan.mobilemanager.ui;
 2
 3 import com.cskaoyan.mobilemanager.R;
 4 import android.content.Context;
 5 import android.util.AttributeSet;
 6 import android.view.View;
 7 import android.widget.CheckBox;
 8 import android.widget.RelativeLayout;
 9 import android.widget.TextView;
10
11 public class SettingItem extends RelativeLayout {
12
13     private TextView tv_setting_title;
14     private TextView tv_setting_description;
15     private String desc_checkbox_on;
16     private String desc_checkbox_off;
17     private CheckBox cb_settingitem;
18
19
20     public SettingItem(Context context, AttributeSet attrs, int defStyle) {
21         super(context, attrs, defStyle);
22         // TODO Auto-generated constructor stub
23         inti();
24     }
25
26
27
28     public SettingItem(Context context, AttributeSet attrs) {
29         super(context, attrs);
30         inti();
31        String itemname = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.cskaoyan.mobilemanager", "itemtitle");
32        desc_checkbox_on = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.cskaoyan.mobilemanager", "desc_checkbox_on");
33        desc_checkbox_off = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.cskaoyan.mobilemanager", "desc_checkbox_off");
34
35        tv_setting_title.setText(itemname);
36        tv_setting_description.setText(desc_checkbox_off);
37     }
38
39     public SettingItem(Context context) {
40         super(context);
41         // TODO Auto-generated constructor stub
42         inti();
43     }
44
45
46     /**
47      * 这个初始化函数需要完成的使命是:
48      * 需要在构造这样一个相对不布局的时候,把里面填充三个简单控件
49      */
50     private void inti() {
51         // TODO Auto-generated method stub
52
53 /*        View view=        View.inflate(getContext(), R.layout.setting_item, null);
54         this.addView(view);*/
55
56          View v=         View.inflate(getContext(), R.layout.setting_item, this);
57
58          tv_setting_title = (TextView) v.findViewById(R.id.tv_setting_title);
59
60          tv_setting_description = (TextView) v.findViewById(R.id.tv_setting_description);
61          cb_settingitem = (CheckBox) v.findViewById(R.id.cb_settingitem);
62
63     }
64
65
66
67     public void setdescription(String text){
68         tv_setting_description.setText(text);
69     }
70
71
72     public void setdescriptionon(){
73         tv_setting_description.setText(desc_checkbox_on);
74     }
75
76     public void setdescriptionoff(){
77         tv_setting_description.setText(desc_checkbox_off);
78     }
79
80     public boolean getChecked(){
81
82         return cb_settingitem.isChecked();
83
84     }
85
86     public void setCheck(boolean checked){
87         cb_settingitem.setChecked(checked);
88         if (checked) {
89             setdescriptionon();
90         }
91         else {
92             setdescriptionoff();
93         }
94
95     }
96
97 }

3,在/res/values/ 文件夹下建立 attrs.xml 对自定义控件设置需要的属性

1 <?xml version="1.0" encoding="utf-8"?>
2 <resources>
3         <declare-styleable name="com.cskaoyan.mobilemanager.ui.SettingItem">
4              <attr name="itemtitle" format="string"/>
5              <attr name="desc_checkbox_on" format="string"/>
6              <attr name="desc_checkbox_off" format="string"/>
7         </declare-styleable>
8 </resources>

在别的布局文件中设定自定义控件的属性值后, SettingItem.java中就会通过 tv_setting_title.setText(itemname)    tv_setting_description.setText(desc_checkbox_off)将setting_item.xml中控件的文本显示进行设置,实质上最终是设置了setting_item.xml中的控件属性

1      <com.cskaoyan.mobilemanager.ui.SettingItem
2           android:id="@+id/settingitem_autoupdate"
3           android:layout_width="fill_parent"
4           android:layout_height="wrap_content"
5           cskaoyan:itemtitle="自动更新"
6           cskaoyan:desc_checkbox_on="自动更新开启"
7           cskaoyan:desc_checkbox_off="自动更新关闭"/>

也可以在SettingItem.java写好一些方法让其他类来调用达到修改的目的

 1     public void setdescription(String text){
 2         tv_setting_description.setText(text);
 3     }
 4
 5
 6     public void setdescriptionon(){
 7         tv_setting_description.setText(desc_checkbox_on);
 8     }
 9
10     public void setdescriptionoff(){
11         tv_setting_description.setText(desc_checkbox_off);
12     }

时间: 2024-10-13 03:56:22

024_01自定义控件的相关文章

winform 自定义控件的使用

c#的自定义控件还是很方便的,至少相对于c++而言. 1,当然是建立一个windows 窗体空间库,我这里就是用vs 2015 ,工程名MyControl 第二步.在自定义空间窗体内,拖放这样一组空间.我们发送编辑框的内容给父窗体,然后接受父窗体的发送的内容,显示到listbox 中. 这里会看到我使用了委托和事件,其实,刚入门的我,对于c#里的委托和事件 理解的并不深刻.看到很多地方再用.感觉和c++ 的回调很相似.这里就不纠结了, 后面慢慢理解吧.我们通过委托将子窗体的内容发送到主窗体. n

WPF自定义控件与样式(11)-等待/忙/正在加载状态-控件实现

一.前言 申明:WPF自定义控件与样式是一个系列文章,前后是有些关联的,但大多是按照由简到繁的顺序逐步发布的等,若有不明白的地方可以参考本系列前面的文章,文末附有部分文章链接. 本文主要有三种实现方式: 简单忙碌状态控件BusyBox: Win8/win10效果忙碌状态控件ProgressRing: 弹出异步等待框WaitingBox: 二.简单忙碌状态控件BusyBox 效果图: 通过属性"IsActive"控制控件是否启用,后台C#代码: /// <summary> /

自定义控件和使用的两种基本方法

有时需要一些组合起来的功能性强的控件,为了以后复用简单,还是自己自定义比较方便. 这里以一个自定义的导航栏为例子,在MainActivity里面使用这个控件. 方法一: 设计并编写自定义控件的布局文件,然后在其他布局文件中include. title的布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android

自定义控件学习——防qq侧滑栏

效果 主要步骤: 1. 在xml布局里摆放内容. include    2. 在自定义ViewGroup里, 进行measure测量, layout布局    3. 响应用户的触摸事件    4. int scrollX = (int) (downX - moveX);    5. getScrollX()获取当前滚动到的位置    6. 平滑动画 先看布局 layout_left <?xml version="1.0" encoding="utf-8"?&g

手机卫士11_ 自定义控件_缓存清理_病毒库更新

拷贝安卓源码中的逻辑,可以考虑先创建一个小项目实现以下效果 1,病毒数据库的自动更新(连接网络,然后获取特征码保存到数据库?) ①工程师发现病毒apk,获取到它的特征码发布到服务器上 通过 MD5 或者ASH1获取特征码 ②客户端杀毒软件下载特征码(可能是 JSON串)到本地客户端 (在打开软件的时候还是打开查杀界面的时候?其实都不适合,应该开启一个服务去定期更新数据库,访问病毒更新特征码地址) 定期更新,timer和timertask,一般一个小时更新一次(测试的时候写短一点) 连接服务器:U

自定义控件一般步骤

自定义组合控件的过程 1.自定义一个View 一般来说,继承相对布局,或者线性布局  ViewGroup:   2.实现父类的构造方法.一般来说,需要在构造方法里初始化自定义的布局文件:    3.根据一些需要或者需求,定义一些API方法: ----------------------------------   4.根据需要,自定义控件的属性,可以参照TextView属性: 5.自定义命名空间,例如: 使用eclipse需添加如下命名空间     xmlns:自定义名称=http://sche

iOS 自定义控件

关于UIToolbar,UINavigationController,UINavigationBar,UIBarButtonItem在ios7的使用的简单的介绍,经过搜索资料做了如下的一些汇集 ----------------------------UIBarButtonItem---------------------------- 1:  UIBarButtonItem 隐藏的方式 [self.btnPunctuation setWidth:0]; 2:  UIBarButtonItem 获

Vs自定义控件设计第一例(直线控件的设计)

目录 一. 杨老师是个热情的人 二. 开始喽 三. 还需要些解释什么吗 四. OK了吗 五.最终代码 一.杨老师是个热情的人 我们的项目开源有一段时间了,我一直以为我有一个很不错的胸怀把自己花了很多精力做出来的项目贡献出来了,我以为同学们会很开心,会像“一个饥饿的人看到面包”一样的扑到了我的项目代码上面快乐的研究起来,但是事实上我们的群里面却异常的冷清.我想应该是大家都还在研究代码来不及说话或者是不爱说话吧,直到今天杨老师给我打电话,说了一些情况,似乎是说大家还不太懂数据库等等,我才知道是我错了

Web用户自定义控件

在新建项的时候,选择Web用户控件,可用来自定义自己的控件,做好后,直接拖到页面即可使用自定义控件与WEB交互,需要在 自定义控件里面 写 属性,如: public string CityID { get { return this.DropDownList1.SelectedValue; } set{ this.DropDownList1.SelectedValue = value;} } 在外面调用的时候如下即可: Label1.Text = this.City1.CityID; 自定义样式