Guest User

Untitled

a guest
Jan 19th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 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. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/windowBackground"
  7. tools:context="com.boo.customerapp.fragment.StatusSummaryFragment">
  8.  
  9. <android.support.design.widget.AppBarLayout
  10. android:id="@+id/appBarLayout"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@color/windowBackground"
  14. android:gravity="center">
  15.  
  16. <android.support.design.widget.CollapsingToolbarLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. app:layout_scrollFlags="scroll|exitUntilCollapsed">
  20.  
  21. <com.mansionly.customerapp.custom.LeadAddressSelector
  22. android:id="@+id/leadAddressSelector"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_alignParentTop="true"
  26. android:layout_margin="@dimen/elementMarginMedium"
  27. app:layout_collapseMode="parallax" />
  28. </android.support.design.widget.CollapsingToolbarLayout>
  29. </android.support.design.widget.AppBarLayout>
  30.  
  31. <android.support.v4.widget.NestedScrollView
  32. android:id="@+id/nestedScrollView"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. android:fillViewport="true"
  36. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  37.  
  38. <LinearLayout
  39. android:id="@+id/llContent"
  40. android:layout_width="match_parent"
  41. android:layout_height="match_parent"
  42. android:orientation="vertical">
  43. <!--views will be added here programmatically-->
  44. </LinearLayout>
  45.  
  46. </android.support.v4.widget.NestedScrollView>
Add Comment
Please, Sign In to add comment