启动 Activity 时平板电脑 Android 方向
我在三星平板电脑上的方向处理上遇到了一个奇怪的问题。 基本上,我有这个应用程序,如果在平板电脑上运行,它应该只在横向模式下运行,如果我在手机上运行,则应该在纵向模式下运行。 为此,我检查我所在的设备,然后使用 onConfigurationChanged
回调来设置正确的布局。 它在手机上完美运行。但是在平板电脑上,如果我将其保持在纵向位置,当在同一应用程序中启动另一个活动时,我会看到主屏幕上有闪光(这并不酷),因此方向(以及 Android 栏)处于纵向位置,第二个活动以纵向加载(这是错误的),不久之后第二个活动将方向更改为正确的横向位置。 有没有一种方法可以直接在横向中简单地加载第二个活动? 谢谢
弗朗西斯科
I have a strange problem on orientation handling on Samsung Tablets.
Basically, I have this app that it is supposed to run only in Landscape if running on tablet and portrait if i'm on a phone.
To do that I check on wich device I'm, and then I use the onConfigurationChanged
callback to set the right layout.
It works perfectly on the phone. But on tablet, if I'm holding it in portrait position, when launch another activity within the same app I see a flash oh the home screen (that's not cool), so the orientation (and also the android bar) goes in portrait position, the second activity is loaded in portrait (that's wrong) and just after a while the second activity change orientation to the right landscape position.
There is a way to simple load the second activity directly in landscape?
Thanks
Francesco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您使用的是相同的 Activity,只需测试 Android 版本并以编程方式设置方向。像这样:
您也可以执行
平板电脑测试。这对于蜂窝来说更具体。您还可以执行 HONEYCOMB_MR1 和 HONEYCOMB_MR1 操作。先生2。
Since you are using the same activity just test for the android version and set the orientation programatically. Like this:
You could also do
To test for tablet. This would be more specific to honeycomb. You also do HONEYCOMB_MR1 & MR2.
如果您想直接以横向方式加载任何 Activity,请直接在 AndroidManifest.xml 文件内的特定活动中提及 screenOrientation:
这将直接以横向方式加载您的 Activity。
If you want to load any activity directly in landscape then mention screenOrientation directly in a particular activity inside the AndroidManifest.xml file:
this will load your activity directly in landscape orientation.