gpt4 book ai didi

android - 如何将 simpleExpandableListAdapter 或类似的东西应用于 ListFragment 中的 ListView

转载 作者:行者123 更新时间:2023-11-29 22:21:27 26 4
gpt4 key购买 nike

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

最佳答案

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

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

关于android - 如何将 simpleExpandableListAdapter 或类似的东西应用于 ListFragment 中的 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7074416/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com