相关疑难解决方法(0)

在android布局中不重复的背景图像

我已经使用以下代码在后台重复图像,但它无法正常工作可以帮助吗?

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

23
推荐指数
3
解决办法
2万
查看次数

标签 统计

android ×1