如何在其他活动的选项卡中加载地图活动
大家好,
在android应用程序中我有一个名为ShowMapActivity的MapActivity。我想在另一个名为 MainActivity 的正常活动的选项卡中显示此地图。
注意:有 3 个选项卡,第 1 个 2 个选项卡显示一些文本数据。在第三个选项卡中应该显示地图。
我的 MainActivity 清单文件如下
请告诉我如何完成此要求,或任何示例资源。
Hello every one,
In android application I have a MapActivity called ShowMapActivity. i want to show this map in a tab of another Normal activity called MainActivity.
Note : there are 3 tabs 1st 2 tabs are showing some text data. In the 3rd tab the map should be displayed.
my manifest file of MainActivity is as follows
Please tell me how to accomplish this requirement, or any example resource.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想使用
TabSpec.setContentView(Intent)
,其中Intent指的是ShowMapActivity。You probably want to specify the content of your map tab using
TabSpec.setContentView(Intent)
, where the Intent refers to ShowMapActivity.