我的列表视图有问题,它应该在顶部有一个按钮,下面是列表视图。
但是,当我运行我的应用程序时,列表视图完全覆盖了按钮。这个问题的主要原因是什么?
编辑 - 对不起大图像,我不知道如何调整它们的大小
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/buttonList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="@string/buttonShow" />
<ListView
android:id="@+id/listDays"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/buttonList"/>
</RelativeLayout>
public class SimpleListView extends ListActivity{
String[] days;
Button mButtonList;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mButtonList = (Button)findViewById(R.id.buttonList);
//mButtonList.setOnClickListener(btnListener);
//setContentView(R.layout.activity_list);
ListView lstView = getListView();
lstView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
days = getResources().getStringArray(R.array.daysArray);
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_checked, days));
}