は、私はタイトル名を持つこの中で、リストの右側に表示され、私のインジケータが良い探している上記の画像では、この拡張可能なリストビューインジケータの表示タイトルの高さ?私はグループの指標で拡張可能なリストビューを使用している
のように私の出力単線です。下の画像に私のインジケータは、それが拡大していない格好良い 、なぜこのここ
が私のコードで起こるmExpandableList = (ExpandableListView)findViewById(R.id.expandable_list);
mExpandableList.setIndicatorBounds(width - GetPixelFromDips(40), width - GetPixelFromDips(10));
XMLは
<ExpandableListView
android:id="@+id/expandable_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:groupIndicator="@drawable/group_indicator" />
group_indicator.xmlが
されています<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/arrow_down" android:state_expanded="true"/>
<item android:drawable="@drawable/arrow_up"/>
</selector>
いずれかが、あなたのadapterClassのgetGroupView()
あなたにそれを膨らませるときに、この1 ........
グループ項目のレイアウトはどちらですか? – AlexBcn
@AlexBcn linearlayout ......... – NagarjunaReddy