我是android新手。我想为我的Android应用程序设置背景图像。我只有一小部分图像。我想只在水平重复图像。我尝试了两种方式。 1.使用位图 当我使用位图图像时,在两个方向(水平和垂直)重复。
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/tile_final"
android:tileMode="repeat"
android:dither="true" />
2.在布局文件中使用背景和tileMode。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:orientation="vertical" >
在上面的水平拉伸图像中。
请帮我解决这个问题。
第一张图像是要重复的图像,第二张图像是后期图像