在扩展 ListActivity 的类中,我创建的每个项目都显示为多个项目。我想在我的 UI 底部有一个“只有一个”按钮......问题是,当我创建该按钮时,它显示为按钮列表,这不是我想要的......我只需要一个按钮。 ...有人可以帮忙吗?这是我的代码,
public class ListViewActivity extends ListActivity implements OnCheckedChangeListener {
TextView label;
CheckBox checkBox;
private ArrayList<Boolean> status = new ArrayList<Boolean>();
public class MyCustomAdapter extends ArrayAdapter<String> {
public MyCustomAdapter(Context context, int textViewResourceId,
String[] objects) {
super(context, textViewResourceId, objects);
for (int i = 0; i < objects.length; i++) {
status.add(false);
}
// TODO Auto-generated constructor stub
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
//return super.getView(position, convertView, parent);
View row = convertView;
if(row==null){
LayoutInflater inflater=getLayoutInflater();
row=inflater.inflate(R.layout.main, parent, false);
}
label=(TextView)row.findViewById(R.id.months);
label.setText(month[position]);
checkBox=(CheckBox)row.findViewById(R.id.checkBox);
checkBox.setFocusable(false);
checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
String event = null;
if (isChecked)
{
status.set(position, true);
event = " just checked!";
}
else
{
status.set(position, false);
event = " just unchecked!";
}
Toast.makeText(getApplicationContext(), "checkbox " + position +event, Toast.LENGTH_SHORT).show();
}
});
checkBox.setChecked(status.get(position));
return row;
}
}
String[] month = {
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
};
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// setContentView(R.layout.main);
/*setListAdapter(new ArrayAdapter<String>(this,
R.layout.row, R.id.weekofday, DayOfWeek));*/
setListAdapter(new MyCustomAdapter(ListViewActivity.this, R.layout.main, month));
//here are the button I am talking about
Button saveButton = (Button) this.findViewById(R.id.button1);
}
}