我们如何固定一个视图的方向?
我们是否可以修复框架布局中一个图像视图的方向,并由传感器控制框架布局的其他子视图的方向?
我想修复背景中图像的方向,并且需要在文本视图中显示一些结果。如果我修复横向的活动,那么我就无法纵向绘制文本。
Can we fix the orientation for one imageview in framelayout, and orientation of other children of frame layout be controlled by the sensor?
I want to fix the orientation of image in background and on top of that need to show some reults in textviews. If I fix the activity in landscape then I can't draw the text portrait wise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为纵向和横向模式使用单独的 xml。
1.您必须创建单独的文件夹layout-land,layout-port
2.将xml保存在其中。
3.确保两者具有相同的名称。
您可以参考此处
You can use separate xml for portrait and landscape mode.
1.you have to create separate folders layout-land, layout-port
2.save the xml in it.
3.Be sure with both have the same name.
You can refer here
方向只能应用于活动,我们无法设置视图的方向。
Orientation can only be applied on activities,we cannot set the orientation of views.