程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> listview-急!android我自己寫了個組合控件RelativeLayout,怎麼加入ListView

listview-急!android我自己寫了個組合控件RelativeLayout,怎麼加入ListView

編輯:編程綜合問答
急!android我自己寫了個組合控件RelativeLayout,怎麼加入ListView

public class Viewg extends RelativeLayout {
private TextView number;
private EditText thing;
private Button biaozhu;
private Button delete;
private int isbiaozhu=0;
private int xiabiao;
public Viewg(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
public Viewg(Context context, AttributeSet attrs){
super(context,attrs);
init(context);
}

public Viewg(Context context,int xiabiao){
    super(context);
    this.xiabiao=xiabiao;
    init(context);
}
public void init(Context context){
    Viewg.inflate(context, R.layout.thing, this);
    number=(TextView)findViewById(R.id.num);
    thing=(EditText)findViewById(R.id.neirong);
    biaozhu=(Button)findViewById(R.id.biaozhu);
    delete=(Button)findViewById(R.id.delete);
    number.setText(num[xiabiao-1]);
    this.setBackgroundResource(R.drawable.bwllist);
}

上面是組合控件,我是想點擊一下按鈕就添加一個這個類到ListView中。
ListView還寫適配器嗎?如果寫的話怎麼寫,用baseadapter嗎?求大神指點!!!

最佳回答:


你把你的組合控件作為一個item項的布局就可以了。如果你還要對裡面的控件進行操作的話,建議你自定義適配器

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved