Android 对话框方向
我有一个活动创建一个带有两个按钮的对话框。单击按钮时,我使用视图翻转器通过动画更改对话框的视图。 当方向改变时,我想使用横向 xml 文件来显示视图翻转器的第二个视图。我该怎么做?
I have an activity that creates a dialog with two buttons. When a button is clicked, I am using a view flipper to change the view of the dialog using animation.
When the orientation is changed, I want to use a landscape xml file to display the second view of the view flipper. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您为视图翻转器创建两个 xml 布局。一个名为 Fliper.xml 并将其放在 res/layout 中。然后创建另一个文件(也称为 Fliper.xml)并将其放在 res/layout-land 中。第二个将在横向模式下使用。有关更多详细信息,请参阅支持多个屏幕。
You create two xml layouts for the view flipper. One called fliper.xml and put it in res/layout. You then create another file also called fliper.xml and put it in res/layout-land. This second one will be used when in landscape mode. See Supporting Multiple Screens for more details.