を実装SimpleExpandableListAdapter
しましたが、セクションのタイトルをカスタマイズしようとしています。これを行うには、groupToパラメーターのカスタム ID をコンストラクターに渡します。TextView
setListAdapter( new SimpleExpandableListAdapter(this,
groupsData,
android.R.layout.simple_expandable_list_item_1,
new String[]{SECTION},
new int[]{R.id.list_group_title},
innerData,
0,
null,
new int[]{}){ /*my code here*/ });
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_group_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20dip" />
問題は、何も表示されないことです。ビューがそこになかったかのように、全体が空白です。理由についてのアイデア、またはこれを解決するために読むことができるリンクはありますか? ありがとう!