我使用了ExpandableListview
,其中每个Group
都有相同的child layout
。
现在有一种情况,其中每个Group
都有不同的子布局(有些checkbox
,有些有imageview
,有些有textview
,具体取决于其值从网络服务获取
如何修改具有相同ExpandableListAdapter
child layout
ExpandableListAdapter.java
public class ExpandableListAdapter extends BaseExpandableListAdapter {
private static final int[] EMPTY_STATE_SET = {};
private static final int[] GROUP_EXPANDED_STATE_SET =
{android.R.attr.state_expanded};
private static final int[][] GROUP_STATE_SETS = {
EMPTY_STATE_SET, // 0
GROUP_EXPANDED_STATE_SET // 1
};
private Context _context;
private List<String> _listDataHeader; // header titles
// child data in format of header title, child title
private HashMap<String, List<String>> _listDataChild;
public ExpandableListAdapter(Context context, List<String> listDataHeader, HashMap<String, List<String>> listChildData) {
this._context = context;
this._listDataHeader = listDataHeader;
this._listDataChild = listChildData;
}
@Override
public Object getChild(int groupPosition, int childPosititon) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.get(childPosititon);
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public View getChildView(int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final String childText = (String) getChild(groupPosition, childPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_child, null);
}
CheckBox chkListChild = (CheckBox) convertView.findViewById(R.id.list_child_chkbox);
chkListChild.setText(childText);
return convertView;
}
@Override
public int getChildrenCount(int groupPosition) {
Log.e("groupPosition", "kargr "+groupPosition);
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.size();
}
@Override
public Object getGroup(int groupPosition) {
return this._listDataHeader.get(groupPosition);
}
@Override
public int getGroupCount() {
return this._listDataHeader.size();
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
String headerTitle = (String) getGroup(groupPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_group, null);
}
View ind = convertView.findViewById( R.id.explist_indicator);
if( ind != null ) {
ImageView indicator = (ImageView)ind;
if( getChildrenCount( groupPosition ) == 0 ) {
indicator.setVisibility( View.INVISIBLE );
} else {
indicator.setVisibility( View.VISIBLE );
int stateSetIndex = ( isExpanded ? 1 : 0) ;
Drawable drawable = indicator.getDrawable();
drawable.setState(GROUP_STATE_SETS[stateSetIndex]);
}
}
TextView lblListHeader = (TextView) convertView
.findViewById(R.id.lblListHeader);
lblListHeader.setTypeface(null, Typeface.BOLD);
lblListHeader.setText(headerTitle);
return convertView;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}
答案 0 :(得分:3)
假设没有超出需要更改当前代码,正确的实现将是一个相当不错的重构,你可以做这样的事情:
@Override
public View getChildView(int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(("IMAGE HEADER").equals(_listDataHeader.get(groupPosition))){
convertView = infalInflater.inflate(R.layout.list_child_image, null);
//update your views here
}else if(("CHECKBOX HEADER").equals(_listDataHeader.get(groupPosition))){
convertView = infalInflater.inflate(R.layout.list_child_image, null);
//update your views here
}
//etc
return convertView;
}
正如您所看到的,这将很快变得混乱,并且无法正确回收视图,因此内存会更难。它还要求您对标题的字符串进行硬编码。
更好的方法是创建一个基类(而不是String),它包含有关View类型的信息以及如何将View作为组的子项呈现。您的每个类型都将从此基类继承。例如:TypeCheckbox扩展了TypeListItem。
然后你的构造函数看起来像:
public ExpandableListAdapter(Context context, List<String> listDataHeader, HashMap<String, List<TypeListItem>> listChildData) {
...
}
当您尝试在任何类型的CollectionView中显示多种类型的项目时,事情会变得复杂。