我无法在任何地方找到将子项添加到可扩展列表的说明。我能找到的关于如何改变背景颜色的50个问题。
现在,我正在使用此代码创建一个普通的列表视图:
public String listArray[] = { "Example1", "Example2", "Example3", "Example4", "Example5"};
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main2);
listV = (ListView) findViewById(R.id.exListView);
listV.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, listArray));
}
但是我如何在example1,example2等下面添加子项或子项呢??
答案 0 :(得分:2)
对于初学者,您需要使用ExpandableListView而不是ListView。然后抛出SimpleExpandableListAdapter并维护对您的组(父)和子数据对象的引用。
然后它就像:
一样简单mChildData.get(groupIndex).get(childIndex).put(...);
mListAdapter.notifyDataSetChanged();
答案 1 :(得分:0)
expandablelistview的基本示例是.. here ....
在您的Activity中实现OnChildClickListener并实现此方法..
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
//Add new chid data in your list (ex ArrayLis or Array whatever you use)
adapter.notifyDataSetChanged() // BaseExpandableListAdapter's adapter...
return true;
}
这对你有用吗?