Advertisement
mhnds

Untitled

Oct 23rd, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="wrap_content"
  6. android:layout_height="600dp"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  11. tools:context=".MainActivity"
  12. tools:showIn="@layout/activity_main"
  13. android:id="@+id/relative">
  14. <FrameLayout
  15. android:id="@+id/frame"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content">
  18.  
  19. <com.example.innovare.scrollhorizontal.ObservableScrollView
  20. android:id="@+id/hori_scroll"
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:scrollbars="none"
  24. >
  25.  
  26.  
  27. <LinearLayout
  28. android:id="@+id/linear_view"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:orientation="horizontal">
  32. </LinearLayout>
  33.  
  34.  
  35.  
  36. </com.example.innovare.scrollhorizontal.ObservableScrollView>
  37. </FrameLayout>
  38. <LinearLayout
  39. android:id="@+id/linear2"
  40. android:layout_below="@id/frame"
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:orientation="horizontal">
  44.  
  45. </LinearLayout>
  46. <LinearLayout
  47. android:id="@+id/linear3"
  48. android:layout_below="@+id/linear2"
  49. android:layout_width="fill_parent"
  50. android:layout_height="wrap_content"
  51. android:orientation="vertical"></LinearLayout>
  52. <LinearLayout
  53. android:layout_width="fill_parent"
  54. android:layout_height="wrap_content"
  55. android:orientation="vertical"
  56. android:layout_below="@+id/frame">
  57.  
  58. </LinearLayout>
  59. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement