布局问题:包含ExpandableListView的对话框

时间:2012-09-12 13:00:28

标签: android dialog expandablelistview

以下是我的对话框的代码。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="vertical" >

<CheckBox
    android:id="@+id/source_select_public"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/source_select_public" />

<ExpandableListView
    android:id="@+id/source_select_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:groupIndicator="@android:color/transparent" />

<LinearLayout
    android:id="@+id/source_select_commands"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="3dp"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/source_select_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@android:string/cancel" />

    <Button
        android:id="@+id/source_select_ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@android:string/ok" />
</LinearLayout>
</LinearLayout>

当ExpandableListView打开时,它可以自动滚动;然而,它下面的两个按钮消失了。我已经尝试将整个布局封装在ScrollView中,但随后ExpandableListView的可滚动行为被破坏(即它太小而无法实际触摸)。我想要实现的是一个可以占用所有屏幕的对话框,同时允许ExpandableListView成为唯一可滚动的组件。有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

旧问题,但这可以使用相对布局作为根布局而不是线性布局来实现