Android 布局仅使一个视图将自己绘制为横向,但其他所有视图都使用纵向
我的活动布局中的主要视图元素是 VideoView。我的视频被渲染为设备的横向分辨率,但视频中的所有内容都是横向的,因此即使我必须将活动设置为 ,它仍然意味着在设备处于纵向位置时观看android:screenOrientation="landscape"
在我的清单中(我必须这样做,否则视频不会占据全屏)。我的问题是:我是否可以在我的视频视图上设置一个参数,告诉它使用横向模式,但让我的应用程序中发生的所有其他内容都面向纵向模式?类似于 LinearLayouts 的 android:orientation="horizontal/vertical"
标签。
The main view element in the layout for my activity is a VideoView. My video is rendered to the landscape resolution of the device, but all of the content in the video is sideways, so its still meant to be viewed while the device is in the portrait position even though I have to set my activity to android:screenOrientation="landscape"
in my manifest (I have to do that or else the video doesn't take up the full screen). My question is: Is it possible for me to set a parameter on my video view that tells it to use landscape mode but have everything else that happens in my app be oriented for portrait mode? Similar to the android:orientation="horizontal/vertical"
tag for LinearLayouts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,抱歉。
在 Android 3.0 上,您可以尝试使用
android:rotation
,但我担心这可能会大大减慢速度。另外,当然,它仅适用于 3.0。No, sorry.
On Android 3.0, you could try playing around with
android:rotation
, but I fear that this may slow things down tremendously. Plus, of course, it's only on 3.0.