如何定期设置格子背景图片?

时间:2014-08-13 20:52:40

标签: android

我刚刚开始进行android编程,所以我真的很棒! 我正在尝试将格子图像设置为背景,我想防止在背景中移动方块并在手机旋转时变成矩形! 你能想出解决我问题的办法吗?最好在XML文件中处理! TNX

1 个答案:

答案 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>

只需确保您的背景图片足够大,以填充大屏幕尺寸。