如何在背景上重复图像?我正在尝试将图像(笔记本表)放入滚动视图中。但我无法弄清楚如何制作它。能给我举个例子? 我是android编程的新手。
PD:抱歉我的英语不好。答案 0 :(得分:0)
如果我正确地告诉你,这样可以帮助你。
导入类似的可绘制图像" img_blue_gray.png"
然后在可绘制文件夹
中创建一个xml文件<强> repeating.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/img_blue_gray"
android:tileMode="repeat"
/>
例如:在布局中使用。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parrent"
android:layout_height="match_parrent"
android:orientation="vertical">
<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parrent"
android:layout_height="match_parrent"
android:layout_gravity="center_horizontal"
android:background="@drawable/repeating.xml">
/* Your other views */
</ScrollView>
</LinearLayout>