我已经使用以下代码在后台重复图像,但它无法正常工作可以帮助吗?
Layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/grass_bg"
>
Run Code Online (Sandbox Code Playgroud)
drawable中的grass_bg.xml看起来像这样
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/grass_small"
android:tileMode="repeat"/>
Run Code Online (Sandbox Code Playgroud)
它显示出相同的小图像.它不重复......
android ×1