android构建复合组件

本文介绍了一个自定义的Android组件EditTextBtn,该组件结合了EditText和Button的功能,并提供了简单的示例代码说明如何创建和使用这个组件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package andorid.j.awin;


import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
/*
* create by danielinbiti
*/
public class EditTextBtn extends LinearLayout {
Button button = null;
EditText editText = null;
public EditTextBtn(Context context) {
super(context);
this.init(context);
}
public EditTextBtn(Context context,AttributeSet attrs){
super(context,attrs);
this.init(context);
}
private void init(Context context){
button = new Button(context);
editText = new EditText(context);

this.setOrientation(LinearLayout.HORIZONTAL);
this.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,50));
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.FILL_PARENT);
layoutParams.weight = 1;
this.addView(editText,layoutParams);
LinearLayout.LayoutParams layoutParamsBtn = new LinearLayout.LayoutParams(50,LayoutParams.FILL_PARENT);
button.setHeight(editText.getHeight());
this.addView(button,layoutParamsBtn);

}
public void onButtonClick(){
button.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
editText.setText("测试danielinbiti");
}
});
}

}


//代码中使用时

editTextBtn = new EditTextBtn(this);

加入到布局里面,如果定义到xml里面也行

以上代码主要是一个简单的示例,组件的组合。


作品:

经典童年游戏(桌游大富翁)-有米积分墙(http://d.1tpan.com/tp1858802400)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值