1

我有一个可工作的可扩展列表视图代码,它作为一个独立的工作正常。我有另一个我单独编写的滑动标签视图的工作代码。

这两个都是在阅读了许多博客、android dev 和 stackoverflow 问题之后编写的。

当我尝试将可扩展列表视图组合并放入其中一个片段时,我最终遇到了一个错误,我无法解决。

这是片段中的代码:

public class Fragment1 extends Fragment {
private static final String NAME = "NAME";
private static final String IS_EVEN = "IS_EVEN";

private ExpandableListAdapter mAdapter;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
    List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
    for (int i = 0; i < 10; i++) {
        Map<String, String> curGroupMap = new HashMap<String, String>();
        groupData.add(curGroupMap);
        curGroupMap.put(NAME, "Group " + i);
        curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");

        List<Map<String, String>> children = new ArrayList<Map<String, String>>();
        for (int j = 0; j < 2; j++) {
            Map<String, String> curChildMap = new HashMap<String, String>();
            children.add(curChildMap);
            curChildMap.put(NAME, "Child " + j);
            curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This child is odd");
        }
        childData.add(children);
    }

    // Set up our adapter
    mAdapter = new SimpleExpandableListAdapter(
            getActivity(),
            groupData,
            android.R.layout.simple_expandable_list_item_1,
            new String[] { NAME, IS_EVEN },
            new int[] { android.R.id.text1, android.R.id.text2 },
            childData,
            android.R.layout.simple_expandable_list_item_2,
            new String[] { NAME, IS_EVEN },
            new int[] { android.R.id.text1, android.R.id.text2 }
            );
    setListAdapter(mAdapter);
}

}`

我在最后一行不断收到错误消息:“Fragment1 类型的方法 setListAdapter(ExpandableListAdapter) 未定义”。

其余代码没有显示错误。

请帮忙。我该如何纠正这个问题。

4

3 回答 3

5

我自己解决了这个问题。为了将来参考,这里是代码。可能很乱,需要清理,但它现在有效!

  public class HotDeals extends Fragment {
private ExpandableListAdapter mAdapter;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,                   Bundle              savedInstanceState) {
    View v = inflater.inflate(R.layout.saved_tabs, null);

return v;
}

private static final String NAME = "NAME";
private static final String IS_EVEN = "IS_EVEN";

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
    List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
    for (int i = 0; i < 10; i++) {
        Map<String, String> curGroupMap = new HashMap<String, String>();
        groupData.add(curGroupMap);
        curGroupMap.put(NAME, "Group " + i);
        curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");

        List<Map<String, String>> children = new ArrayList<Map<String, String>>();
        for (int j = 0; j < 2; j++) {
            Map<String, String> curChildMap = new HashMap<String, String>();
            children.add(curChildMap);
            curChildMap.put(NAME, "Child " + j);
            curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This          child     is odd");
        }
        childData.add(children);
    }
    ExpandableListView lv = (ExpandableListView) getActivity().findViewById(R.id.list);
    // Set up our adapter
    mAdapter = new SimpleExpandableListAdapter(
            getActivity(),
            groupData,
            android.R.layout.simple_expandable_list_item_1,
            new String[] { NAME, IS_EVEN },
            new int[] { android.R.id.text1, android.R.id.text2 },
            childData,
            android.R.layout.simple_expandable_list_item_2,
            new String[] { NAME, IS_EVEN },
            new int[] { android.R.id.text1, android.R.id.text2 }
            );
    lv.setAdapter(mAdapter);
}
}

@Divers & @Dixit - 谢谢。

于 2013-07-15T03:33:38.070 回答
0

这篇文章已经有将近 2 年的历史了,但此页面中没有任何答案是相关的。

回答 PO 问题,

对于 Fragment1 类型,方法 setListAdapter(ExpandableListAdapter) 未定义

这是因为setListAdapterListFragment 或 ListActivity 的方法正在等待 aListAdapter或其子类作为参数。你得到这个错误是因为你给了它一个ExpandableListAdapter没有实现ListAdapter接口的。

希望这会对某人有所帮助。

于 2015-04-18T11:29:24.063 回答
0

片段不包含方法setListAdapterListFragment做。你必须从这个类扩展你的片段来解决这个问题。

于 2013-07-14T05:32:50.467 回答