学习参考:http://blog.csdn.net/hudashi/article/details/50913257
http://blog.csdn.net/gebitan505/article/details/18264091
http://blog.csdn.net/psuaije/article/details/8662266
http://www.cnblogs.com/yc-755909659/archive/2015/02/10/4283294.html
下面是源代码:代码中添加了一个接口,这个接口用于给自定义控件设置自定义的事件
mycontrol.代码:
- package paj.control;
- import android.content.Context;
- import android.util.AttributeSet;
- import android.view.View;
- import android.widget.Button;
- import android.widget.EditText;
- import android.widget.LinearLayout;
- //继承LinearLayout
- public class mycontrol extends LinearLayout {
- /**
- * 一定一个接口
- */
- public interface ICoallBack{
- public void onClickButton(String s);
- }
- /**
- * 初始化接口变量
- */
- ICoallBack icallBack = null;
- /**
- * 自定义控件的自定义事件
- * @param iBack 接口类型
- */
- public void setonClick(ICoallBack iBack)
- {
- icallBack = iBack;
- }
- //
- private Context _Context;
- /**
- * 两个参数的构造函数(必须使用两个参数的构造函数,因为自定义的控件需要在XML布局中使用,里面含有属性)
- * @param context 调用自定义控件的对象
- * @param attrs
- */
- public mycontrol(Context context, AttributeSet attrs) {
- super(context, attrs);
- _Context = context;
- //将自定义的控件添加到主布局
- this.addView(CreateLayout());
- }
- private View CreateLayout(){
- //创建一个LainearLayout布局
- LinearLayout layout = new LinearLayout(_Context);
- LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT , LayoutParams.WRAP_CONTENT);
- layout.setOrientation(LinearLayout.VERTICAL);
- layout.setLayoutParams(params);
- //创建一个文本编辑框
- final EditText edit = new EditText(_Context);
- LayoutParams editParams = new LayoutParams(LayoutParams.FILL_PARENT , LayoutParams.WRAP_CONTENT);
- edit.setLayoutParams(editParams);
- //创建一个按钮
- Button button = new Button(_Context);
- LayoutParams btpParams = new LayoutParams(LayoutParams.WRAP_CONTENT , LayoutParams.WRAP_CONTENT);
- button.setLayoutParams(btpParams);
- button.setText("点击获取");
- //设置按钮的点击事件
- button.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- // 返回这个自定义控件中计算出的值,使用回调实现
- icallBack.onClickButton(edit.getText().toString());
- }
- });
- //文本编辑框和按钮添加到layout布局
- layout.addView(edit);
- layout.addView(button);
- return layout;
- }
- }
activity_main.xml代码
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- <!-- 定义自己的控件 -->
- xmlns:paj_control="http://schemas.android.com/apk/res/paj.control.mycontrol"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- >
- <!-- 自定义控件 -->
- <paj.control.mycontrol android:id="@+id/mycontrol"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <!-- 显示自定义控件返回的值 -->
- <TextView android:id="@+id/test"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- />
- </LinearLayout>
MainActivity.java 代码:
-
- package com.example.controlstest;
- import paj.control.mycontrol;
- import paj.control.mycontrol.ICoallBack;
- import android.os.Bundle;
- import android.app.Activity;
- import android.view.Menu;
- import android.widget.TextView;
- public class MainActivity extends Activity {
- mycontrol _mMycontrol;
- TextView textView;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- textView = (TextView)findViewById(R.id.test);
- //得到自定义控件
- _mMycontrol = (mycontrol)findViewById(R.id.mycontrol);
- //实现自定义控件中的setonClick自定义事件
- _mMycontrol.setonClick(new ICoallBack() {
- @Override
- public void onClickButton(String s) {
- textView.setText(s);//将自定义控件传递的值显示到文本框内
- }
- });
- }
- }