I want to repeat the image with ImageView with in RelativeLayout. Can it be possible to use the Bitmap xml and use tilemode \"repeat\"
ImageView
RelativeLayout
\"repeat\"
Yes, its possible. Define your repeating image as Drawable (bitmap) with android:tileMode="repeat" in XML and use it as background of your RelativeLayout.
Drawable (bitmap)
android:tileMode="repeat"