android error android.support.v4.app.Fragment $ InstantiationException

时间:2013-06-05 13:28:10

标签: android android-fragments

我有一个带滑动菜单的课程。 当我恢复活动时,当应用程序暂停时,我收到以下错误!

android.support.v4.app.Fragment$InstantiationException: Unable to instantiate fragment kostas.menu.rssreader.ListActivity$SampleListFragment: make sure class name exists, is public, and has an empty constructor that is public

1 个答案:

答案 0 :(得分:0)

请注意您收到的错误消息

  

06-05 16:27:04.215:E / AndroidRuntime(14976):引起:java.lang.InstantiationException:无法实例化类kostas.menu.rssreader.ListActivity $ SampleListFragment;没有空构造函数

这意味着你为你创建的每个Fragment类都有一个空构造函数。

只需添加空构造函数,一切都应该没问题。