Skip to content

Commit

Permalink
Merge pull request #3823 from kiwix/Fix#3813
Browse files Browse the repository at this point in the history
Fixed: `Low contrast` issues reported by the playstore.
  • Loading branch information
kelson42 authored May 7, 2024
2 parents 4b575cf + 119fca0 commit c663059
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 14 deletions.
2 changes: 2 additions & 0 deletions app/src/main/res/layout/fragment_intro.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?colorSurface"
tools:ignore="Overdraw"
tools:context=".intro.IntroFragment">

<org.kiwix.kiwixmobile.intro.CustomViewPager
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/item_intro_1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?colorSurface"
android:padding="24dp">

<ImageView
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/item_intro_2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?colorSurface"
android:padding="24dp">

<ImageView
Expand Down
13 changes: 9 additions & 4 deletions app/src/main/res/layout/item_language.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="64dp">
android:layout_height="wrap_content"
android:minHeight="64dp">

<CheckBox
android:id="@+id/item_language_checkbox"
Expand Down Expand Up @@ -55,7 +56,11 @@

<View
android:id="@+id/item_language_clickable_area"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?selectableItemBackground" />
android:layout_width="0dp"
android:layout_height="0dp"
android:background="?selectableItemBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
2 changes: 1 addition & 1 deletion core/src/main/res/drawable/ic_feedback_orange_24dp.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="24dp"
android:tint="#FF9800"
android:tint="#D17D00"
android:viewportHeight="24.0"
android:viewportWidth="24.0"
android:width="24dp">
Expand Down
24 changes: 15 additions & 9 deletions core/src/main/res/layout/activity_kiwix_error.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_blue_dark"
android:background="@color/error_activity_background"
tools:context=".error.ErrorActivity"
tools:ignore="Overdraw">

Expand All @@ -17,7 +17,7 @@
android:layout_marginEnd="8dp"
android:text="@string/crash_description"
android:textAlignment="center"
android:textColor="@color/alabaster_white"
android:textColor="@color/white"
android:textSize="14sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand All @@ -30,8 +30,8 @@
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="32dp"
android:singleLine="true"
android:maxLines="1"
android:singleLine="true"
android:text="@string/crash_button_confirm"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/restartButton"
Expand Down Expand Up @@ -99,9 +99,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_language"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />

<CheckBox
android:id="@+id/allowLogs"
Expand All @@ -110,9 +111,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_logs"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />

<CheckBox
android:id="@+id/allowCrash"
Expand All @@ -121,9 +123,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_exception"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />

<CheckBox
android:id="@+id/allowZims"
Expand All @@ -132,9 +135,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_zimfiles"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />

<CheckBox
android:id="@+id/allowDeviceDetails"
Expand All @@ -143,9 +147,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_device"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />

<CheckBox
android:id="@+id/allowFileSystemDetails"
Expand All @@ -154,9 +159,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginTop="8dp"
android:buttonTint="@color/denim_blue200"
android:checked="true"
android:text="@string/crash_checkbox_file_system"
android:textColor="@color/alabaster_white" />
android:textColor="@color/white" />
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
1 change: 1 addition & 0 deletions core/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
<color name="monza_red">#b00020</color>
<color name="startServerGreen">#2e7d31</color>
<color name="stopServerRed">#c62728</color>
<color name="error_activity_background">#007EA8</color>
</resources>

0 comments on commit c663059

Please sign in to comment.