ExpandableListView
、a、CheckedTextView
およびListView
:を含むカスタムビューを作成しています。
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/filtersDialogView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="200dp"
android:orientation="vertical" >
<ExpandableListView
android:id="@+id/filtersListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<CheckedTextView
android:id="@+id/onlyShowAvailableItemsCheckedTextView"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:gravity="center_vertical"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:text="@string/OnlyShowAvailableItems" />
<ListView
android:id="@+id/categoriesListView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
問題は、CheckTextView
が修正され、2つのリストが独立してスクロールしていることです(これはそのレイアウトでは正常です)。さらに、からリストアイテムを展開するとExpandableListView
、CheckedTextView
と他ListView
が非表示になります。最初のリストの要素を展開したときに適切にスクロールおよびサイズ変更できるこれらすべての要素を含む単一のリストを作成したいと思います(2番目のリストのセルは展開できません)。どうやってやるの?リストのアダプタと?のコントローラを変更せずに作成することは可能CheckedTextView
ですか?ありがとう