如何在ListFragment中将简单的ExpandableListAdapter或类似的东西应用于ListView

时间:2011-08-16 06:36:24

标签: android expandablelistview android-fragments

我正在使用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)

2 个答案:

答案 0 :(得分:1)

你不能只在ListView上设置它吗?

ListView lv = (ListView) findViewById(R.id.your_list);
lv.setAdapter(expListAdapter);

答案 1 :(得分:1)

好的我通过明确指出ExapndableListView来决定这一点 - 是的,我在Expandable上更改了常用的ListView,并使用SimpleCursorTreeAdapter代替SimpleExpandableListAdapter