我正在使用可扩展列表视图,用户可以在其中选择数据。
用户可以选择组,也可以选择孩子。为了便于区分2,我有一个有2个选项的无线电组:
我需要的是在第二种情况下隐藏组指示符,然后在选择第一个选项时将其恢复。
这是我的代码:
rgLink.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if(checkedId == R.id.rb_link_subject){ //Here is the child mode
mLinkType = LINK_SUBJECT;
//elvSubject.setGroupIndicator(/*Here I need the default group indicator*/);
}
else{ //Here is the group mode
collapseAllChildren();
//The line below hide the group indicator
elvSubject.setGroupIndicator(null);
mLinkType = LINK_CATEGORY;
}
}
});
我也在使用小组项目:
style="?android:attr/listSeparatorTextViewStyle"
基本上,我只需要一行代码来恢复默认的组指标。我怎么能这样做?
答案 0 :(得分:10)
您可以从当前主题获取属性:
//obtain expandableListViewStyle from theme
TypedArray expandableListViewStyle = context.getTheme().obtainStyledAttributes(new int[]{android.R.attr.expandableListViewStyle});
//obtain attr from style
TypedArray groupIndicator = context.getTheme().obtainStyledAttributes(expandableListViewStyle.getResourceId(0,0),new int[]{android.R.attr.groupIndicator});
elvSubject.setGroupIndicator(groupIndicator.getDrawable(0));
expandableListViewStyle.recycle();
groupIndicator.recycle();