Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/ScrollView01"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. >
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. >
  10.  
  11. <HorizontalScrollView
  12. android:id="@+id/view_pager"
  13. android:layout_width="wrap_content"
  14. android:scrollbars="none"
  15. android:layout_height="wrap_content"
  16. >
  17.  
  18. <LinearLayout
  19. android:id="@+id/llImages"
  20. android:layout_height="match_parent"
  21. android:layout_width="wrap_content"
  22. android:orientation="horizontal"
  23. android:layout_gravity="start"
  24. >
  25.  
  26. <!--imageViews here are added programatically-->
  27.  
  28. </LinearLayout>
  29. </HorizontalScrollView>
  30. .
  31. .
  32. .
  33. </RelativeLayout>
  34. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement