0

我是安卓新手。我想为我的 Android 背景屏幕保留纹理。如何在 Android 设计中创建纹理?

我正在使用 android-xml 进行设计。

4

1 回答 1

1

假设您的纹理图像名为:texture1.png

  1. 放入文件夹texture1.png/res/drawable
  2. 创建texture.xml/res/drawable把这段代码放在上面:

    <bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/texture1"
    android:tileMode="repeat" />
    
  3. 将此行添加到布局 xml 的根目录(通常根目录是 a <LinearLayout>):

    android:background="@drawable/texture"
    
于 2012-08-31T02:58:01.563 回答