我想知道当手机方向改变时如何修改视图。例如,当您“以正常方式”握住手机时,我的应用程序运行良好,但是当您将其移至横向位置时,应用程序的外观变得难看:-如何确保壁纸不会与手机一起“转动” ,这是我的布局代码:文件名:list-event.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<ListView android:id="@android:id/list"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="@drawable/fon2"></ListView>
</LinearLayout>
如您所见,这只是一个简单的列表,但我希望背景保持不变。我为 layout 和 layout-land 放置了相同的内容我只是放置了相同的文件 list_event 但我认为我需要添加一些命令以使背景图像以不同的方式定向。我希望你能理解我写的东西提前谢谢