Advertisement
Galebickosikasa

Untitled

Jul 10th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_height="match_parent"
  4. android:layout_width="match_parent"
  5. xmlns:app="http://schemas.android.com/apk/res-auto">
  6.  
  7. <com.google.android.material.appbar.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:id="@+id/appBar"
  11. android:fitsSystemWindows="true"
  12. android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
  13.  
  14. <androidx.appcompat.widget.Toolbar
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:id="@+id/searchToolBar"
  18. android:background="@color/colorPrimary"
  19. app:layout_scrollFlags="scroll|enterAlways"/>
  20.  
  21. </com.google.android.material.appbar.AppBarLayout>
  22.  
  23. <androidx.core.widget.NestedScrollView
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:id="@+id/nested"
  27. app:layout_behavior="@string/appbar_scrolling_view_behavior" >
  28.  
  29. <TextView
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:text="@string/kek"
  33. android:background="@color/white"
  34. android:textColor="@color/black" />
  35.  
  36. <!-- <androidx.recyclerview.widget.RecyclerView-->
  37. <!-- android:layout_width="match_parent"-->
  38. <!-- android:layout_height="wrap_content"-->
  39. <!-- android:id="@+id/mainRecycler" />-->
  40.  
  41. </androidx.core.widget.NestedScrollView>
  42.  
  43. </androidx.coordinatorlayout.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement