0

我正在使用 FragmentTabsPager,但当内容本身是嵌入 ListViews 和许多其他活动的复杂 Activity 时,不确定如何分配其中一个选项卡的内容。这仅适用于小的一个窗格屏幕,所以我可以将此 Activity 附加到其中一个选项卡中,而不会将整个内容更改为 Fragment 类吗?简单地将 onCreate 更改为 onCreateView (inflate) 是否正确,这变成了 getActivity()?

编辑:http ://www.themobilemontage.com/

在上面的链接中下载

教程 9:将 Web 服务集成到您的 Android 应用程序中

http://www.youtube.com/watch?feature=player_embedded&v=QTO5a1IeBl8

Main 类是 edu.gvsu.cis.toptracks.TopTrackListActivity,它从 Activity 扩展,所以如果我开始一个新的空白 Activity,不确定如何转换这个类(转换为 Fragment 或 FragmentActivity?)并将其作为选项卡内容之一从模板空白活动-> 导航类型-> 固定选项卡+滑动。

当我尝试更改 TopListActivity 但不太清楚该怎么做时,有什么建议吗?

如果我能转换这个

4

1 回答 1

0

There is no FragmentTabsPager in Android. You cannot embed an activity into a FragmentTabHost, which is what I assume you mean. You can convert your activities to fragments, then use those with FragmentTabHost or any of the other modern tab solutions for Android.

This is only for small one pane screen, so can I attach this Activity inside one of the tabs without changing the whole thing into a Fragment class?

No. Activities-in-tabs has been deprecated for well over two years.

于 2013-05-16T12:31:01.073 回答