1

我希望在我的 android 应用程序中添加嘈杂的背景。纹理完美,我可以创建 NinePatch 图像,但是当我在应用程序中实际使用它时,它会拉伸,导致整个背景出现线条。知道实现这种纹理的更好方法是什么吗?

我也希望在操作栏上使用类似的东西。

嘈杂的灰色

4

1 回答 1

1

9-Patch 将拉伸,您必须指定图像中应拉伸的区域。你为什么不尝试重复你的drawable。像这样:

<xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/YourLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/backrepeat"
>

然后在一个名为 backrepeat.xml 的 xml 中

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/back" 
    android:tileMode="repeat" />
于 2013-11-08T05:46:26.577 回答