我刚刚开始进行android编程,所以我真的很棒! 我正在尝试将格子图像设置为背景,我想防止在背景中移动方块并在手机旋转时变成矩形! 你能想出解决我问题的办法吗?最好在XML文件中处理! TNX
答案 0 :(得分:0)
这就是你要求的:
<?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:orientation="vertical">
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/background_image"
android:contentDescription="@string/text" />
</FrameLayout>
<!-- rest of your layout !-->
</RelativeLayout>
只需确保您的背景图片足够大,以填充大屏幕尺寸。