2017-08-25 79 views

回答

1

您可以像這樣以編程方式刪除;

getExpandableListView().setGroupIndicator(null); 

通過使用xml;

android:groupIndicator="@null" 
1
android:groupIndicator="@null" 

使用這個屬性在你的XML

1

試試這個progrmattically

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

yourListView .setGroupIndicator(null); 

yourListView .setChildIndicator(null); 

,並試圖改變ExpandableListView's屬性android:groupIndicator="@null"