2012-04-09 71 views
1

在扩展ListActivity的类中,我创建的每个项目都显示为多个项目。我想在我的用户界面底部有“只有一个”按钮....问题是,当我创建该按钮时,它显示为不是我想要的按钮列表...我只需要一个按钮。 ...任何人都可以帮忙? 这里是我的代码,Android类扩展ListActivity中的android按钮

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); 




    } 


    } 

回答

0

如果你只想要一个底部按钮,然后您可以您的ListView下面的按钮位置,或者使用页脚观点如下所述:

Android ListView Footer View not being placed on the bottom of the screen

+0

如何在列表视图的下方? 你可以发给我的XML吗? – 2012-04-09 18:53:22

+0

问题是我没有在我的xml中定义任何listView,那么我如何将它定位在ListView之下? – 2012-04-09 18:57:33

+0

你正在添加列表视图到一些容器是否正确?添加列表视图后添加按钮 – 2012-04-09 19:10:59