列表视图无法正确显示,如图形布局所示

时间:2013-08-22 13:16:55

标签: java android android-listview

我的listview存在问题,它应该在顶部有一个按钮,下面是listview。

然而,当我运行我的应用程序时,listview完全覆盖了按钮。这个问题的主要原因是什么?

编辑 - 对于大图片感到抱歉,我不知道如何调整它们的大小

enter image description here

enter image description here

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

3 个答案:

答案 0 :(得分:0)

如果您希望我们能够修复它,您将需要提供代码。请提供您的xml布局。但是,如果没有进一步的信息,可能是您的xml布局存在问题。这是一个可能适合您的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
>
<Button
    android:id="@+id/header_button"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
 />
 <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:dividerHeight="1dip"
        android:paddingLeft="1dp"
        android:layout_below="@id/header_button"
        />
</RelativeLayout>

答案 1 :(得分:0)

你可以使用这个简单:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
    android:id="@+id/tab2"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.1"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

<LinearLayout
    android:id="@+id/tab3"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.9"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

</LinearLayout>

答案 2 :(得分:0)

你的xml代码看起来是正确的

您是在代码中的任何位置设置属性visibility.gone吗?