diff options
author | Amit Kumar <amitkma@e.email> | 2021-05-15 01:18:21 +0530 |
---|---|---|
committer | Amit Kumar <amitkma@e.email> | 2021-05-15 01:18:21 +0530 |
commit | 47194484d7c2ca6ce8103312b9dbfb1244e8c4e6 (patch) | |
tree | 643171c9af65cd56ffe1fe854ae52f535f5c077a /app/src/main/res/layout/fragment_permissions.xml | |
parent | da842396556248654acacfdebbc01f5e20132eb6 (diff) |
Use MaterialToolbar from MDC instead of android Toolbar
Diffstat (limited to 'app/src/main/res/layout/fragment_permissions.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_permissions.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/src/main/res/layout/fragment_permissions.xml b/app/src/main/res/layout/fragment_permissions.xml index 72748b4..a452570 100644 --- a/app/src/main/res/layout/fragment_permissions.xml +++ b/app/src/main/res/layout/fragment_permissions.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" +<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" @@ -7,7 +7,7 @@ android:background="@color/white" > - <include layout="@layout/toolbar"/> + <include layout="@layout/topbar"/> <LinearLayout android:layout_width="match_parent" @@ -15,7 +15,6 @@ android:orientation="vertical" android:paddingLeft="32dp" android:paddingRight="32dp" - android:layout_marginTop="?android:attr/actionBarSize" tools:context=".main.MainActivity" > @@ -47,4 +46,4 @@ tools:listitem="@layout/item_permission" android:id="@+id/recylcer_view_permissions"/> </LinearLayout> -</FrameLayout>
\ No newline at end of file +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |