如何加载蜂窝设备的另一个活动

发布于 2024-11-17 21:08:06 字数 231 浏览 1 评论 0原文

我开发了一个智能手机应用程序。我的活动 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恋竹姑娘 2024-11-24 21:08:06

诀窍是进行三项活动。一个是主要的,主要是根据是否是蜂窝来选择启动哪个应用程序活动。本质上是这样的(未经测试):

public class MainAcitivity {
    onCreate(Bundle save) {
        Intent intent;
        if(android.os.Build.VERSION.SDK_INT > 10) 
            intent = new Intent(this, HoneycombActivity.class);
        else 
            intent = new Intent(this, PreHoneycombActivity.class);
        startActivity(intent);
    }
}

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):

public class MainAcitivity {
    onCreate(Bundle save) {
        Intent intent;
        if(android.os.Build.VERSION.SDK_INT > 10) 
            intent = new Intent(this, HoneycombActivity.class);
        else 
            intent = new Intent(this, PreHoneycombActivity.class);
        startActivity(intent);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文