activity_main.xml 700 B

123456789101112131415161718192021
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. >
  6. <FrameLayout
  7. android:id="@+id/main_content"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_above="@+id/main_tab_radio_group" >
  11. </FrameLayout>
  12. <include
  13. android:id="@+id/main_tab_radio_group"
  14. android:layout_width="match_parent"
  15. android:layout_height="60dp"
  16. android:layout_alignParentBottom="true"
  17. layout="@layout/layout_main_tab_radio_group" />
  18. </RelativeLayout>