即使我的 Activity 在 Android 2.3.1 中处于纵向模式,如何将框架布局设置为横向
我有一个活动,我正在打开相机。我正在使用框架布局进行相机预览。但我必须以纵向模式打开相机,这会产生很多问题,例如小屏幕、旋转问题,即使我的活动处于纵向模式,我是否可以将框架布局设置为横向
,或者是否有任何在纵向模式下有效打开相机的想法非常感谢
提前致谢
i have an activity where i am opening a camera. i am using framelayout for camera preview. but i have to open camera in portrait mode which creating lot many problem, like small screen, rotation problem, can i set my framelayout to landscape even if my activity is in portrait mode
or if any idea for opening camera effectively in portrait mode will be appreciated
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 API 级别 8 (v2.2) 中,Camera 包含一个名为 setDisplayOrientation 的方法。使用 90 调用此方法可将相机显示屏旋转为纵向模式。
In API level 8 (v2.2), Camera contains a method called setDisplayOrientation. Call this method with 90 to rotate your camera display to portrait mode.
尝试编辑 AndroidManifest.xml 的活动声明:
Try editing your AndroidManifest.xml's activity declaration: