android - 如何制作这样的背景

时间:2015-03-08 08:29:46

标签: android android-listview

我需要为listview上的每一行创建这样的背景。

enter image description here

无论如何不使用背景图片吗?我的意思是,无论如何只需使用xml drawables来实现这个目标吗?

谢谢

1 个答案:

答案 0 :(得分:1)

您需要创建repeatable Bitmap并将其设置为layout background

使用此图片enter image description here (如果你想改变颜色等,你可以编辑图像,如果你需要我可以分享的psd文件)

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/rep_bg" 
    android:tileMode="repeat" />

layout

android:background="@drawable/backrepeat"

最终输出将是