ArrayAdapterを自分の好みに変換するように設定しましたが、LinearLayoutsの子をそのリストビューで使用する方法を知りたいと思います。たとえば、LinearlayoutにTextViewがあり、setTextを呼び出したいのですが、方法がわからない、またはsetOnClickListenerと呼びたいボタンがあるかもしれませんが、方法がわかりません!
これが私のgetViewコードです:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
if (convertView == null){
convertView = inf.inflate(R.layout.normal_row, parent , false);
}
switch(position){
case(0):
// here is where my first LinearLayout goes , containing an Image and Switch which I need to program in onCheckedChangeListener ...
convertView = (LinearLayout) inf.inflate(R.layout.row_switch, parent,false);
break;
case(1)
// here I need to set the Text for the following two options on some basis , they are both linearLayouts containing a single textView which I want to call setText for each case 1 and 2.
break;
case(2)
}