Tiling images in android with ImageView in XML
问题 I am trying to get an image on the background to tile until the background is full. My current code is: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/cartoonclouds" android:contentDescription="@string/desc" android:tileMode="repeat" /> <LinearLayout