1

と がありExpandableListViewますButton。リスト内のいくつかのアイテムを開くと、リストが展開されているため、ボタンにアクセスできません。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >
        <ExpandableListView
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:id="@+id/expEnt"
                />
    <Button
            android:layout_height="wrap_content"
            android:layout_width="100dp"
            android:text="Plot"
            android:layout_below="@id/expEnt"
            android:layout_alignParentRight="true"/>
</RelativeLayout>

ボタンにアクセスできます 私はできません

それを修正する方法はありますか?

4

2 に答える 2

1

これを試してください:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btnPlot"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="Plot" />

    <ExpandableListView
        android:layout_above="@+id/btnPlot"
        android:id="@+id/expEnt"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>
于 2013-10-08T10:27:19.547 に答える
1

これを試して。これはあなたを助けるかもしれません:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >
        <ExpandableListView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:id="@+id/expEnt"
                />
    <Button
            android:layout_height="wrap_content"
            android:layout_width="100dp"
            android:text="Plot"           
           android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"/>
</RelativeLayout>
于 2013-10-08T10:16:23.013 に答える