-1

我的列表视图有问题,它应该在顶部有一个按钮,下面是列表视图。

但是,当我运行我的应用程序时,列表视图完全覆盖了按钮。这个问题的主要原因是什么?

编辑 - 对不起大图像,我不知道如何调整它们的大小

在此处输入图像描述

在此处输入图像描述

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

3 回答 3

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>

于 2013-08-22T13:36:13.437 回答
0

您的 xml 代码看起来很正确

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

于 2013-08-22T13:50:53.073 回答
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>
于 2013-08-22T13:30:47.210 回答