我需要获取一个片段(ListFragment),但下面的代码返回null。编辑:我应该补充说我正在使用ViewPager和FragmentStatePagerAdapter。
TaskListFragment tlf = (TaskListFragment) getSupportFragmentManager().findFragmentById(R.id.fragment_task_list);
我猜这是因为id是构成Fragment的XML文件中RelativeLayout的id。
我找到了一个“Fragment”标签,认为应该让我能够为片段提供一个id,但是在XML文件中包含该标签会给我一个“错误膨胀类片段” 错误,即使eclipse显示XML有效。
我该怎么办?问题是id是错的吗?如果是这样,我如何为片段提供一个可以使用findFragmentById ??
检索的id编辑:添加了XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_task_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="no data" />
</RelativeLayout>