我可以在 Android 中检测两种风景吗?

发布于 2024-11-07 09:41:18 字数 765 浏览 0 评论 0原文

可能的重复:
如何检测横向左侧 (正常)与横向右(反向)并支持自然横向设备?

旋转设备时是否可以检测一种横向与另一种横向?

@Override
public void onConfigurationChanged(Configuration newConfig)
{
    super.onConfigurationChanged(newConfig);

    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
    }
    else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
    }
}

有效,但我想看看是否可以确定它位于手机的哪一侧,因为我想显示不同的布局。

Possible Duplicate:
How to detect landscape left (normal) vs landscape right (reverse) with support for naturally landscape devices?

Is it possible to detect one landscape vs the other landscape when rotating the device?

@Override
public void onConfigurationChanged(Configuration newConfig)
{
    super.onConfigurationChanged(newConfig);

    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
    }
    else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
    }
}

works but I'd like to see if I can determine which side of the phone it is on as I want to display a different layout.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅笑轻吟梦一曲 2024-11-14 09:41:18

对于运行 Android 2.2+ 的设备,您可以。请查看这篇博文了解详细信息,或者您可以跳到重点

You can, for devices running Android 2.2+. Check out this blog post for the details or you can skip to the punchline.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文