在我的日食中,当我同时设置scrollView和背景图像时,我的背景图像垂直延伸。我希望它不会延伸,而是一直沿着ScrollView重复。
请帮忙
答案 0 :(得分:0)
在drawable中创建XML文件:
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/my_image"
android:tileMode="repeat" />
比你可以使用这个文件作为你的drawable,它将重复
请注意,在listview中使用时,有一个与repeat(android 3.0和bellow)相关的错误 见XML drawable Bitmap tileMode bug?