我正在使用此代码设置我自己的组指示器图标并将其设置在列表的右侧
ExpandableListView list = (ExpandableListView) findViewById(R.id.SCHEDULE);
Drawable icon = StationInfo2.this.getResources().getDrawable(R.drawable.expander_group);
list.setGroupIndicator(icon);
list.setIndicatorBounds(list.getWidth() - 80, list.getWidth() - 40);
它可以显示我自己的图标,但图标显示的大小错误。
因为我是新来的,所以我不能发布链接或图片来展示它的外观,但我希望有人知道我该怎么做?