1

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つのリストが独立してスクロールしていることです(これはそのレイアウトでは正常です)。さらに、からリストアイテムを展開するとExpandableListViewCheckedTextViewと他ListViewが非表示になります。最初のリストの要素を展開したときに適切にスクロールおよびサイズ変更できるこれらすべての要素を含む単一のリストを作成したいと思います(2番目のリストのセルは展開できません)。どうやってやるの?リストのアダプタと?のコントローラを変更せずに作成することは可能CheckedTextViewですか?ありがとう

4

1 に答える 1

1

どうやってやるの?リストのアダプターとCheckedTextViewのコントローラーを変更せずに作成することは可能ですか?

ExpandableListView特に、との2つのスクロールビューがあるので、私はそれを疑っていますListView。唯一の選択肢は、上記のレイアウトをシミュレートする特別なアダプターだと思います。ExpandableListView上記のようなレイアウトをシミュレートするものに変更したカスタムアダプタがありました。それは生の何かなので、いくつかのエラーがある可能性があります(私はそれを少しテストしました)そしてもちろん他に取り組むべきことがあります。コードサンプルは少し大きいので、ここに配置しますhttps://gist.github.com/3046887

于 2012-07-04T11:35:29.000 に答える