Say I want to make one layout inside another one with different background colors, but once I add a background color to the inner layout ( frameLayout6 in this case ), the outer layout's background becomes transparent...
any ideas what might be wrong?
Thanks!
<FrameLayout
android:id="@+id/frameLayout5"
android:layout_width="160px"
android:layout_height="160px" android:background="#FFFFFF" android:layout_marginLeft="20px">
<FrameLayout
android:id="@+id/frameLayout6"
android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_margin="5px">
</FrameLayout>
</FrameLayout>