【发布时间】:2015-09-02 20:09:25
【问题描述】:
我正在尝试实现可扩展列表视图,它包含不同类型的视图,例如文本视图、编辑框和下拉列表作为其子项,如下所示。
Personal Info (Header)
Name (editbox)
Gender (spinner)
Age (editbox)
Address (Header)
Province (dropdown)
street (Editbox)
textview
这是我的适配器代码。 (仅适用于编辑框类型子项)
public class ExpandableListAdapter extends BaseExpandableListAdapter implements
TextWatcher {
private Context _context;
private List<String> _listDataHeader; // header titles
// child data in format of header title, child title
private HashMap<String, List<String>> _listDataChild;
private ArrayList<EditText> editTextList = new ArrayList<EditText>();
String name, purpose;
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);
String header = _listDataHeader.get(groupPosition);
System.out.println("Header: " + header);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.listitem, null);
}
TextView txtListChild = (TextView) convertView
.findViewById(R.id.lblListItem);
txtListChild.setText(childText);
EditText editetext = (EditText) convertView
.findViewById(R.id.lblListItemEditext);
editetext.addTextChangedListener(this);
editTextList.add(editetext);
return convertView;
}
@Override
public int getChildrenCount(int 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.listgroup, null);
}
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;
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
}
截图:
我浏览过不同的网站,但我找到了仅针对仅包含一种视图类型的可扩展列表视图的解决方案。
谢谢。
【问题讨论】:
-
发布您的适配器代码
-
@r j 我已经连接了我的适配器。
-
抱歉,我没听懂您的意思..?您真正想要做什么..??为不同的条目显示不同的标题或显示不同的 childViews..?如果是,那么依据是什么?
-
请查看更新。我附上了截图。
-
好的,所以你想根据类型显示不同的childViews,给我一些时间我会在一些时间放代码
标签: android expandablelistview