0

我创建了一个 action_bar.xml 布局文件。我在哪里实现了可扩展的列表视图和 2 个按钮。如图所示,但问题是整个可扩展列表视图都出现在 actionBar Side 中。我的布局文件

    <?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"
    android:gravity="fill_vertical"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="Button" />

    <ExpandableListView
        android:id="@+id/expandableListView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" >
    </ExpandableListView>

</RelativeLayout>

我想在完成屏幕上显示可扩展的列表视图。

4

1 回答 1

0

出现ExpandableListView在 ActionBar 中是因为它是操作栏自定义布局的一部分,该布局使用 ActionBar 尺寸进行膨胀和显示。

另一种方法是为其中一个按钮设置单击侦听器,然后将 Listview 显示为弹出控件。

于 2012-08-17T11:08:16.947 回答