只有在3.0版之前的设备使用兼容性库时才会发生这种情况
我收到的错误是我无法确定的。我有一个带有ListFragment和标准片段的Activity。它就像Android Dev Guide的Developers部分中提供的示例一样。
ListFragment子类(未覆盖任何函数)
public class ItemListFragment extends ListFragment
MainActivity
public class ItemViewerActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.item_viewer);
}
}
MainActivity的Xml布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<fragment class="org.example.ItemListFragment"
android:id="@+id/item_list_fragment"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" />
<FrameLayout
android:id="@+id/item_info_frame"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" />
</LinearLayout>
来自LogCat的错误消息
ERROR / AndroidRuntime:引起:java.lang.ClassCastException:org.example.ItemListFragment无法强制转换为android.app.Fragment
答案 0 :(得分:35)
答案 1 :(得分:1)
对我来说问题是我忘了改变清单。根据教程的建议,我将Activity转换为Fragment并创建了一个shell Activity来调用它。我的清单仍然指向Fragment类导致类强制转换异常。