1

我看过各种关于如何将 Activity 转换为 ListActivity 以填充 ListView 的教程,但没有任何关于 ListFragments 的教程。我有两个标签,每个标签下都有一个片段。这是我的片段目前的样子......有人可以给我一些关于如何做到这一点的想法吗?

public class MainFragment extends ListFragment {    

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

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){      
        return inflater.inflate(R.layout.fragment_main, container, false);
 }
}

这是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>

我正在尝试items在 ListView 中显示。

4

1 回答 1

3

您不需要膨胀view包含listview内部的ListFragment. 只需创建一个adapter,给它一些数据并输入onCreate()您的fragment调用setListAdapter()。然后在其他地方(大概在Activityfragmentfragmentmanager.

于 2012-07-11T01:44:32.763 回答