我有一個ExpandableListView
和一個Button
。當我打開列表中的一些項目時,我無法訪問按鈕,因爲列表已擴展。ExpandableListView和滾動
<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>
是否有某種方式來解決這個問題?
layout_heightof的RelativeLayout的應match_parent。但我會建議你使用LinearLayout垂直 –
鋼同樣的問題 – Vitaliy
你試着與linerlayout ID? –