I have a framelayout like this. It contains two overlays:
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/my_frame" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/image_areas" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="fitCenter" android:src="@drawable/image_mask" android:visibility="invisible"/> <ImageView android:id="@+id/image" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="fitCenter" android:src="@drawable/walker"/> </FrameLayout>
I want to add a TextView below this FrameLayout . Is it possible, or FrameLayout to take all the space on the screen? Can I put FrameLayout and TextView as LinearLayout ?
Edit: The problem is that my TextView does not appear when Im puts it in a LinearLayout or RelaiveLayout along with my FrameLayout.
source share