I have a child layout inside its parent layout. If i set any background color for parent, it sets the same color for its child also. But i don't want to set the same color for child. (I want the default android black color as background for child). Please help me.
EDITED:
I need to capture the child layout and create a bitmap later, So i should not set any background color for child (but its parent should has some color). It should set to default android black only.
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FFA500" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_margin="15dp"
android:layout_weight="1"
android:gravity="center" >
</RelativeLayout>
</LinearLayout>
Parent linear layout has some BG color. I didn't set any BG color for child relative layout but it is taking parent's BG color. So now, how can i set android default BG color for child ?