知是行的主意,行是知的功夫。这篇文章主要讲述Android自定义控件系列之基础篇相关的知识,希望能为你提供帮助。
一、概述 |
二、实现定制一个简单RadioButton |
public class MRadioButton extends RadioButton { … }
2、在MRadioButton类中,定制属性
我们可以在控件中定义自己的属性,可以定义多个属性,但必须封装提供set/get方法,也就是按规范写。如mValue属性,像下面代码
文章图片
private String mValue; public String getmValue() { return mValue; } public void setmValue(String mValue) { this.mValue = https://www.songbingjia.com/android/mValue; }
文章图片
3、为定制的属性编写attrs.xml资源
该资源文件放在res/values目录下,内容如下:
文章图片
< ?xml version="1.0" encoding="utf-8"?> < resources> < declare-styleable name="MRadioButton"> < ! – 属性名称--> < attr name="value" format="string" /> < /declare-styleable> < /resources>
文章图片
4、在MRadioButton类中定义构造函数,初始化属性
文章图片
public MRadioButton(Context context) { super(context); } public MRadioButton(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public MRadioButton(Context context, AttributeSet attrs) { super(context, attrs); //从attrs.xml中加载一个名字叫’ .MRadioButton’的declare-styleable资源 TypedArray tArray = context.obtainStyledAttributes(attrs, R.styleable.MRadioButton); //将属性value与类中的属性mValue关联 this.mValue = https://www.songbingjia.com/android/tArray.getString(R.styleable.MRadioButton_value); //回收tArray对象 tArray.recycle(); }
文章图片
5、在MainActivity中布局文件中添加MRadioButton组件,如下所示
文章图片
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:jereh="http://schemas.android.com/apk/res/com.jereh. view" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.zdyview.MainActivity" > < com.itc.zidingyiview.MRadioButton android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/mrb" jereh:value="https://www.songbingjia.com/android/hello" /> < /RelativeLayout>
文章图片
6、MainActivity代码:
文章图片
public class MainActivity extends Activity { private MRadioButton rb; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); rb=(MRadioButton)super.findViewById(R.id.mrb); rb.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(MainActivity.this, rb.getmValue(),Toast.LENGTH_LONG).show(); } }); } }
推荐阅读
- android_orm框架之greenDAO
- Android studio 中R.menu的创建
- Wrapper-装箱和拆箱
- 基于XMPP 协议的开发 android
- Android加密算法之AES加密和解密实现
- 原创10万条数据采用存储过程分页实现(Mvc+Dapper+存储过程)
- 基于路由机制设计的app架构思路
- Android数据加密概述及多种加密方式 聊天记录及账户加密 提供高质量的数据保护
- 如何在Python中从URL下载文件(详细实现示例)