我使用一个可扩展的列表视图,用户可以在其中选择数据。
用户可以选择组或子组。为了便于区分这两个选项,我有一个广播组,有两个选项:
选择子项:普通可展开列表(可展开
分组并选择子项)
选择组:所有组都折叠,用户无法展开组
我需要的是隐藏第二种情况下的组指示符,然后在选择第一个选项时恢复它。
这是我的代码:

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"

所以基本上,我只需要一行代码来恢复默认的组指示符。我该怎么做?

最佳答案

可以从当前主题获取属性:

 //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();

08-04 08:05