如何加载蜂窝设备的另一个活动
我开发了一个智能手机应用程序。我的活动 (MainActivity
) 正在扩展 TabActivity
。 现在我要创建一个平板电脑(蜂窝)布局。为此,MainActivity
不得扩展 TabActivity
。
有没有办法(意图过滤器?)让蜂窝(api级别> = 11)启动另一个Activity作为较低api级别的设备?
I have developed an app for smartphones. My activity (MainActivity
) is extending TabActivity
.
Now I'm going to create a tablet (honeycomb) layout. For that the MainActivity
must not extend the TabActivity
.
Is there a way (intent filters?) to let a honeycomb (api level >= 11) start another Activity as a lower api level device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍是进行三项活动。一个是主要的,主要是根据是否是蜂窝来选择启动哪个应用程序活动。本质上是这样的(未经测试):
The trick is to have three activities. One is the main, and in the main you choose which application activity you start based on whether it is honeycomb or not. In essence something like this (not tested):