diff options
author | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-22 09:36:01 +0100 |
---|---|---|
committer | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-22 09:36:01 +0100 |
commit | a9d8b2e6a4c45a62ae0b5cbf1e7682886f4360d1 (patch) | |
tree | a3020e8f9a8de56579530b90852ba804552284bb /app/src/main/res/layout/fragment_permissions.xml | |
parent | b18b3d06913cf1c2b792a26f5d37e6949af2cf60 (diff) |
Use system theme colors. #5082
Diffstat (limited to 'app/src/main/res/layout/fragment_permissions.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_permissions.xml | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/app/src/main/res/layout/fragment_permissions.xml b/app/src/main/res/layout/fragment_permissions.xml deleted file mode 100644 index 7ca4b43..0000000 --- a/app/src/main/res/layout/fragment_permissions.xml +++ /dev/null @@ -1,57 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<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:background="@color/white" - android:layout_height="match_parent" - android:layout_width="match_parent" - > - - <include layout="@layout/topbar" /> - - <androidx.core.widget.NestedScrollView - android:layout_height="match_parent" - android:layout_width="match_parent" - app:layout_behavior="@string/appbar_scrolling_view_behavior" - > - - <LinearLayout - android:layout_height="match_parent" - android:layout_width="match_parent" - android:orientation="vertical" - android:paddingLeft="32dp" - android:paddingRight="32dp" - tools:context=".main.MainActivity" - > - - <TextView - android:id="@+id/permission_control" - android:layout_gravity="center_horizontal" - android:layout_height="wrap_content" - android:layout_width="match_parent" - android:paddingTop="16dp" - android:text="@string/permission_control_info" - android:textColor="@color/black" - android:textSize="14sp" - /> - - <TextView - android:fontFamily="sans-serif-medium" - android:gravity="center_vertical" - android:id="@+id/learn_more_permissions" - android:layout_height="48dp" - android:layout_width="wrap_content" - android:text="@string/learn_more" - android:textColor="#007fff" - android:textSize="14sp" - /> - - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/recylcer_view_permissions" - android:layout_height="match_parent" - android:layout_width="match_parent" - tools:listitem="@layout/item_permission" - /> - </LinearLayout> - </androidx.core.widget.NestedScrollView> -</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |