我希望在我的Android应用中添加一个嘈杂的背景。纹理是完美的,我可以创建一个NinePatch图像,但当我在应用程序中实际使用它时,它会拉伸整个背景中的线条。知道实现这种纹理的更好方法是什么?
我也希望在动作栏中使用类似的东西。
答案 0 :(得分: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" />