Friday, August 17, 2012

Tile Bitmap

Many times you would like to repeat an image in the background.
That is possible in android like css repeat.

Create tile_bitmap.xml in drawable
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/rs"
    android:tileMode="repeat"></bitmap>
   
and use it like
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"   
    android:background="@drawable/tile_bitmap">