aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-11-02 22:32:21 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2021-11-03 15:51:44 +0530
commit4f2383dd88cb9595e585929a79cb5026ee7a4921 (patch)
treed265a5fb44b12ec0cbb9a11c67b18b02a1fb920e /app/src/main/res/layout
parentf9e4e7da8ac13c381b0beb77796d09d5c1ce9f6c (diff)
app: fix background colors for onboarding flow
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/fragment_clone.xml2
-rw-r--r--app/src/main/res/layout/fragment_key_selection.xml2
-rw-r--r--app/src/main/res/layout/fragment_repo_location.xml2
-rw-r--r--app/src/main/res/layout/fragment_welcome.xml4
4 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/res/layout/fragment_clone.xml b/app/src/main/res/layout/fragment_clone.xml
index 305f28a7..95461558 100644
--- a/app/src/main/res/layout/fragment_clone.xml
+++ b/app/src/main/res/layout/fragment_clone.xml
@@ -7,7 +7,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="?attr/colorPrimary">
+ android:background="?android:attr/colorBackground">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
diff --git a/app/src/main/res/layout/fragment_key_selection.xml b/app/src/main/res/layout/fragment_key_selection.xml
index df3c531d..adeba0ee 100644
--- a/app/src/main/res/layout/fragment_key_selection.xml
+++ b/app/src/main/res/layout/fragment_key_selection.xml
@@ -7,7 +7,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="?attr/colorPrimary"
+ android:background="?android:attr/colorBackground"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatImageView
diff --git a/app/src/main/res/layout/fragment_repo_location.xml b/app/src/main/res/layout/fragment_repo_location.xml
index 4bdaefe8..9d42a39a 100644
--- a/app/src/main/res/layout/fragment_repo_location.xml
+++ b/app/src/main/res/layout/fragment_repo_location.xml
@@ -7,7 +7,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="?attr/colorPrimary">
+ android:background="?android:attr/colorBackground">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
diff --git a/app/src/main/res/layout/fragment_welcome.xml b/app/src/main/res/layout/fragment_welcome.xml
index 3f46c65a..fa94124d 100644
--- a/app/src/main/res/layout/fragment_welcome.xml
+++ b/app/src/main/res/layout/fragment_welcome.xml
@@ -7,7 +7,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="?attr/colorPrimary"
+ android:background="?android:attr/colorBackground"
android:orientation="vertical">
<com.google.android.material.button.MaterialButton
@@ -19,7 +19,7 @@
android:layout_alignParentEnd="true"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:text="@string/action_settings"
- android:textColor="?attr/colorOnPrimary"
+ android:textColor="?attr/colorOnBackground"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />