diff options
author | TheScarastic <warabhishek@e.email> | 2022-03-29 13:56:17 +0530 |
---|---|---|
committer | TheScarastic <warabhishek@e.email> | 2022-03-29 17:02:31 +0530 |
commit | a84a733fc72d71a3991b5d5e3d9390fc724d00c5 (patch) | |
tree | 0caaf332de8bba3e6f4b5fc863c36643eda1277b /app/src/main/res/layout | |
parent | dded3d54fd9fd1cb112811cde5404bec3cbec922 (diff) |
pvc: Add support for dark mode
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/apptrackers_fragment.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_dashboard.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_fake_location.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_internet_activity_policy.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_trackers.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/topbar.xml | 2 |
6 files changed, 6 insertions, 7 deletions
diff --git a/app/src/main/res/layout/apptrackers_fragment.xml b/app/src/main/res/layout/apptrackers_fragment.xml index 87fbc51..b0b9e71 100644 --- a/app/src/main/res/layout/apptrackers_fragment.xml +++ b/app/src/main/res/layout/apptrackers_fragment.xml @@ -22,7 +22,7 @@ <androidx.coordinatorlayout.widget.CoordinatorLayout - android:background="@color/primary" + android:background="@color/background" android:layout_height="match_parent" android:layout_width="match_parent" > diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index ec69575..83932b1 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -15,7 +15,7 @@ > <LinearLayout - android:background="@color/primary" + android:background="@color/background" android:gravity="center_horizontal" android:layout_height="match_parent" android:layout_width="match_parent" diff --git a/app/src/main/res/layout/fragment_fake_location.xml b/app/src/main/res/layout/fragment_fake_location.xml index cec5af0..065d222 100644 --- a/app/src/main/res/layout/fragment_fake_location.xml +++ b/app/src/main/res/layout/fragment_fake_location.xml @@ -4,7 +4,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:mapbox="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" - android:background="@color/primary" + android:background="@color/background" android:layout_height="match_parent" android:layout_width="match_parent" > diff --git a/app/src/main/res/layout/fragment_internet_activity_policy.xml b/app/src/main/res/layout/fragment_internet_activity_policy.xml index 943c5dd..328eeae 100644 --- a/app/src/main/res/layout/fragment_internet_activity_policy.xml +++ b/app/src/main/res/layout/fragment_internet_activity_policy.xml @@ -2,8 +2,7 @@ <layout> <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/primary" + android:background="@color/background" android:layout_height="match_parent" android:layout_width="match_parent" > diff --git a/app/src/main/res/layout/fragment_trackers.xml b/app/src/main/res/layout/fragment_trackers.xml index 04fcfb1..2122816 100644 --- a/app/src/main/res/layout/fragment_trackers.xml +++ b/app/src/main/res/layout/fragment_trackers.xml @@ -3,7 +3,7 @@ <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/primary" + android:background="@color/background" android:layout_height="match_parent" android:layout_width="match_parent" > diff --git a/app/src/main/res/layout/topbar.xml b/app/src/main/res/layout/topbar.xml index 90fb29a..eaebce1 100644 --- a/app/src/main/res/layout/topbar.xml +++ b/app/src/main/res/layout/topbar.xml @@ -31,7 +31,7 @@ android:id="@+id/toolbar" android:layout_height="?android:attr/actionBarSize" android:layout_width="match_parent" - app:titleCentered="true" tools:layout_height="56dp" + app:navigationIcon="@drawable/ic_back_24dp" /> </com.google.android.material.appbar.AppBarLayout> |