android – 更改方向时Xml布局更改

android – 更改方向时Xml布局更改,第1张

概述我有两个活动,根据SD卡的存在打开.一个活动有三个按钮和一个TextView,另一个活动有一个 ImageView,一个按钮和缩放控件.当我改变方向时,按钮在水平方向上被扰乱.怎么绕过这个? My ‘SD’ card layout <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas 我有两个活动,根据SD卡的存在打开.一个活动有三个按钮和一个TextVIEw,另一个活动有一个 ImageVIEw,一个按钮和缩放控件.当我改变方向时,按钮在水平方向上被扰乱.怎么绕过这个?

My ‘SD’ card layout

<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:background="#1E1E1E"    androID:orIEntation="vertical" >    <button        androID:ID="@+ID/button_print"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParentBottom="true"        androID:layout_centerHorizontal="true"        androID:layout_marginBottom="44dp"        androID:background="@drawable/my_button"        androID:text="@string/print" />    <TextVIEw        androID:ID="@+ID/text_SDmissing"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParenttop="true"        androID:layout_centerHorizontal="true"        androID:layout_margintop="80dp"        androID:text="@string/SDmissing"        androID:textSize="20dp" />    <button        androID:ID="@+ID/button_camera"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_above="@+ID/button_print"        androID:layout_centerHorizontal="true"        androID:layout_marginBottom="58dp"        androID:background="@drawable/my_button"        androID:text="@string/camera" />    <button        androID:ID="@+ID/button_insert"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_below="@+ID/text_SDmissing"        androID:layout_centerHorizontal="true"        androID:layout_margintop="40dp"        androID:background="@drawable/my_button"        androID:text="@string/insert" /></relativeLayout>
解决方法 您必须为纵向和横向模式创建单独的XML文件,并将其放在不同的目录中.设备将自动选择正确的设备.您可以使用以下目录结构
res/layout/my_layout.xml   res/layout-land/layout.xml

如需进一步参考,您可以查看:
http://developer.android.com/guide/practices/screens_support.html

总结

以上是内存溢出为你收集整理的android – 更改方向时Xml布局更改全部内容,希望文章能够帮你解决android – 更改方向时Xml布局更改所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137359.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存