我有一个带滑动菜单的课程。 当我恢复活动时,当应用程序暂停时,我收到以下错误!
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
答案 0 :(得分:0)
请注意您收到的错误消息
06-05 16:27:04.215:E / AndroidRuntime(14976):引起:java.lang.InstantiationException:无法实例化类kostas.menu.rssreader.ListActivity $ SampleListFragment;没有空构造函数
这意味着你有为你创建的每个Fragment
类都有一个空构造函数。
只需添加空构造函数,一切都应该没问题。