我正在使用ListFragment,并希望制作一个困难的列表,其中有子列表,不知道我该怎么做(( 一些代码:
public class CarsOfBrandFragment extends ListFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
String[] s = {"colorName"};
int[] k = {R.id.groupname};
String[] s1 = new String[]{"shadeName", "rgb"};
int[] k1 = new int[]{R.id.childname, R.id.rgb};
SimpleExpandableListAdapter expListAdapter = new SimpleExpandableListAdapter(getActivity(), createGroupList(),
R.layout.grouprow, s, k, createChildList(), R.layout.childrow, s1, k1);
setListAdapter(expListAdapter);
}
android.support.v4.app.ListFragment中的setListAdapter(android.widget.ListAdapter)无法应用于(android.widget.SimpleExpandableListAdapter)
答案 0 :(得分:1)
你不能只在ListView上设置它吗?
ListView lv = (ListView) findViewById(R.id.your_list);
lv.setAdapter(expListAdapter);
答案 1 :(得分:1)
好的我通过明确指出ExapndableListView
来决定这一点 - 是的,我在Expandable上更改了常用的ListView,并使用SimpleCursorTreeAdapter
代替SimpleExpandableListAdapter