Advertisement
Guest User

ViewPager: Añadiendo títulos

a guest
Mar 12th, 2014
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent">
  7.  
  8.  
  9. <android.support.v4.view.ViewPager
  10. android:id="@+id/columnas"
  11. android:layout_width="fill_parent"
  12. android:layout_height="0dp"
  13. android:layout_weight="1"
  14. />
  15.  
  16. <com.viewpagerindicator.TitlePageIndicator
  17. android:id="@+id/titulos"
  18. android:padding="10dip"
  19. android:layout_height="wrap_content"
  20. android:layout_width="fill_parent"
  21. />
  22.  
  23. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement