I have LinearLayout, and I have png that I used as tiles - but i want also that the color behind it will be white.
Is that possible?
My code is:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/LinearMain" android:background="@drawable/bcktiles">
and the drawable is:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bgsite" android:tileMode="repeat">
</bitmap>
I dont know where to put #fff
Thanks