2017-08-25 12 views

答えて

1

あなたは、このようにプログラム的に削除することができます。

getExpandableListView().setGroupIndicator(null); 

xmlを使用すると、あなたのXML

1
android:groupIndicator="@null" 

使用このプロパティは、このprogrmattically

ExpandableListView yourListView = (ExpandableListView)findViewById(R.id.yourListView); 

yourListView .setGroupIndicator(null); 

yourListView .setChildIndicator(null); 

を試してみて、android:groupIndicator="@null"

1

android:groupIndicator="@null" 
関連する問題