以下の私のコードから試すことができるように、TestView は ExpandableListView で覆われており、表示されません。私はそれが一番上にあり、次に ExpandableListView が下にあり、下にいくつかの要素を持つ LinearLayout があることを望みます。
これがなぜ起こるのか、そしてどのように解決するのか知っていますか?ありがとう
<?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"
>
<TextView
android:id="@+id/tvteam"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_above="@+id/listViewTeams"
android:text="test"
/>
<ExpandableListView
android:id="@+id/listViewTeams"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="tvteam"
/>
<LinearLayout
android:id="@+id/llbottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical"
>
<EditText
android:id="@+id/searchteam"
android:layout_width="@dimen/editwidthsml"
android:layout_height="@dimen/editheightsml"
android:singleLine="true"
android:imeOptions="actionSearch"
android:layout_margin="2dp"
android:hint="@string/searchteam" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="3"
>
<Button
android:id="@+id/btnfilterteams1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/selectorface"
android:text="@string/tourneyteams"
android:tag="btnfilterteams1"
/>
<Button
android:id="@+id/btnfilterteams2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/selectorface"
android:text="@string/allteams"
android:tag="btnfilterteams2"
/>
<Button
android:id="@+id/btnfilterteams3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/selectorface"
android:text="@string/playersonly"
android:tag="btnfilterteams3"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>