我正在尝试为我的应用程序设置一个选项卡式界面。我打开了Support13Demos
随 ADT 分发的项目。我能够编译并运行它。为了使用它,我创建了一个带有 com.example.android.supportv13.app
包的新项目并将适当的文件复制到其中。
然后我复制了引用的布局和字符串。我所有的编译错误都消失了,但是应用程序启动并立即崩溃并出现错误:Could not find class 'com.example.android.supportv13.app.ActionBarTabsPager$TabsAdapter', referenced from method com.example.android.supportv13.app.ActionBarTabsPager.onCreate
.
该类ActionBarTabsPager
确实包括一个类TabsAdapter
。
public class ActionBarTabsPager extends Activity {
…
public static class TabsAdapter extends FragmentPagerAdapter
implements ActionBar.TabListener, ViewPager.OnPageChangeListener { … }
}
我试过清理项目,但没有帮助。私人图书馆也被启用。