/res/layout/user_profile.xml

https://bitbucket.org/jonny_evans/comp4020project · XML · 28 lines · 26 code · 2 blank · 0 comment · 0 complexity · 5d869c2dbf4d397fb04f5dd7ffce21fc MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@android:id/tabhost"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <LinearLayout
  7. android:orientation="vertical"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent">
  10. <TextView
  11. android:id="@+id/textUser"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:padding="10dp"
  15. android:text="@string/lblUser"
  16. />
  17. <TabWidget
  18. android:id="@android:id/tabs"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content" />
  21. <FrameLayout
  22. android:id="@android:id/tabcontent"
  23. android:layout_width="fill_parent"
  24. android:layout_height="fill_parent"/>
  25. </LinearLayout>
  26. </TabHost>