Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
1,497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/nestedscrollview"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@android:color/holo_green_light"
  7. android:fillViewport="true"
  8. android:padding="20dp"
  9. tools:context=".MainActivity">
  10.  
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:orientation="vertical">
  15.  
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="400dp"
  19. android:background="#ff1cb5ff"></LinearLayout>
  20.  
  21. <LinearLayout
  22. android:layout_width="match_parent"
  23. android:layout_height="400dp"
  24. android:background="#ff337fff"></LinearLayout>
  25.  
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="400dp"
  29. android:background="#ff1c3cff"></LinearLayout>
  30.  
  31. <android.support.v4.view.ViewPager
  32. android:id="@+id/pager"
  33. android:layout_width="match_parent"
  34. android:layout_height="600dp"
  35. android:background="#FFA0" />
  36.  
  37. <LinearLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="400dp"
  40. android:background="#ffdd92ff"></LinearLayout>
  41.  
  42. <LinearLayout
  43. android:layout_width="match_parent"
  44. android:layout_height="400dp"
  45. android:background="#ffee60ff"></LinearLayout>
  46.  
  47. <LinearLayout
  48. android:layout_width="match_parent"
  49. android:layout_height="400dp"
  50. android:background="#ffe710ff"></LinearLayout>
  51.  
  52. </LinearLayout>
  53.  
  54. </android.support.v4.widget.NestedScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement