Advertisement
ncosentino

Tab Fragment Tutorial - Layout - activity_main.xml

Oct 30th, 2013
2,170
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <!--
  2. Blog Post:
  3. http://devleader.ca/2013/11/04/fragments-tabbed-android-user-interface
  4.  
  5. Layouts:
  6. activity_main.xml: http://pastebin.com/kj8M38Ze
  7. fragment_tabs.xml: http://pastebin.com/0b7HAeAK
  8. simple_tab.xml: http://pastebin.com/9SqLbS0X
  9.  
  10. Classes:
  11. MainActivity.java: http://pastebin.com/eBv3H775
  12. SimpleTabDefinition.java: http://pastebin.com/wW3WCcy9
  13. TabDefinition.java: http://pastebin.com/KSRV2f3U
  14. TabsFragment.java: http://pastebin.com/9Asv7AVH
  15. -->
  16. <LinearLayout
  17.    xmlns:android="http://schemas.android.com/apk/res/android"
  18.    android:orientation="vertical"
  19.    android:layout_width="fill_parent"
  20.    android:layout_height="fill_parent">
  21.  
  22.     <fragment
  23.        class="com.devleader.tab_fragment_tutorial.TabsFragment"
  24.        android:id="@+id/tabs_fragment"
  25.        android:layout_width="fill_parent"
  26.        android:layout_height="fill_parent" />
  27. </LinearLayout>
Advertisement
Comments
  • ncosentino
    237 days
    # text 0.18 KB | 0 0
    1. Remember to check out my blog: https://www.devleader.ca
    2. Subscribe to my newsletter at: https://www.devleader.ca/newsletter
    3. Check out my videos at: https://www.youtube.com/devleader
Add Comment
Please, Sign In to add comment
Advertisement