Guest User

Untitled

a guest
Dec 6th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5.  
  6. <android.support.design.widget.AppBarLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="350dp"
  9. android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
  10.  
  11. <android.support.design.widget.CollapsingToolbarLayout
  12. android:id="@+id/collapsing_toolbar"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. app:contentScrim="?attr/colorPrimary"
  16. app:titleEnabled="false"
  17. android:background="@drawable/landing"
  18. app:layout_scrollFlags="scroll|exitUntilCollapsed">
  19.  
  20. <TextView
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_gravity="center"
  24. android:textSize="48sp"
  25. android:text="#000"
  26. android:id="@+id/store_id"
  27. app:layout_collapseMode="parallax" />
  28.  
  29. <android.support.v7.widget.Toolbar
  30. android:id="@+id/toolbar"
  31. android:layout_width="match_parent"
  32. android:layout_height="?attr/actionBarSize"
  33. app:layout_collapseMode="pin" />
  34.  
  35. </android.support.design.widget.CollapsingToolbarLayout>
  36.  
  37. </android.support.design.widget.AppBarLayout>
  38.  
  39. <android.support.v4.widget.NestedScrollView
  40. android:layout_width="match_parent"
  41. android:layout_height="match_parent"
  42.  
  43. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  44.  
  45. <LinearLayout
  46. android:layout_width="match_parent"
  47. android:layout_height="match_parent"
  48. android:orientation="vertical"
  49. >
  50.  
  51. <!-- <include layout="@layout/card_layout" />
  52. <include layout="@layout/card_layout" />
  53. <include layout="@layout/card_layout" />-->
  54. </LinearLayout>
  55. </android.support.v4.widget.NestedScrollView>
  56. </android.support.design.widget.CoordinatorLayout>
Add Comment
Please, Sign In to add comment