向Android listview中添加button
2010-06-04 14:15:00 来源:WEB开发网android 中所有的控件都是继承view,如果你认为你有能力,你可以修改framework,你可以把任何控件嵌入到别的控件中。
1.第一你要创建一个线性布局,水平的,一个textview,一个button.
我直接上源码:
public class TestItemView extends LinearLayout {
Context context;
private TextView text;
private Button btn;
private LayoutParams a ;
Drawable getIcon(int resource) {
return getResources().getDrawable(resource);
}
public TestItemView(Context context,String title,String btnString) {
super(context);
a=new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.FILL_PARENT);
a.leftMargin=150;
this.context=context;
this.setOrientation(HORIZONTAL);
text = new TextView(context);
text.setText(title);
text.setCompoundDrawablesWithIntrinsicBounds(getIcon(R.drawable.icon),
null, null, null);
text.setTextSize(20);
text.setGravity(17);
addView(text, new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.FILL_PARENT));
btn = new Button(context);
btn.setText(btnString);
addView(btn,a);
//处理button点击事件
Button.OnClickListener mOkOnClickListener = new Button.OnClickListener()
{
public void onClick(View v) {
text.setText("我好!");
}
};
btn.setOnClickListener(mOkOnClickListener);
// TODO Auto-generated constructor stub
}
public void setTitle(String title)
{
text.setText(title);
}
public void setButton(String btnString)
{
btn.setText(btnString);
}
2.你要创建一个BaseAdapter,将你的布局加入到一个view中。
public class textAdapter extends BaseAdapter{
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接