gpt4 book ai didi

java - 在 Android 上的 ListFragment 中使用 ArrayAdapter 获取构造函数错误

转载 作者:太空狗 更新时间:2023-10-29 15:55:35 27 4
gpt4 key购买 nike

这是我的代码。我收到错误 The constructor ArrayAdapter<String>(MainFragment, int, String[]) is undefined在 ArraryAdapter 上。

如何填充 listView1用数组 items

public class MainFragment extends ListFragment {    

String[] items = { "12 Monkeys", "(500) Days of Summer", "Chariots of Fire" };

@Override
public void onCreate(Bundle savedInstanceState)
{
setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, items));
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return super.onCreateView(inflater, container, savedInstanceState);
}
}

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

最佳答案

fragment 不是上下文对象。您需要将 Activity 对象 (Fragment.getActivity()) 作为第一个参数传递。

关于java - 在 Android 上的 ListFragment 中使用 ArrayAdapter 获取构造函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11439392/

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