diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-04-26 20:07:10 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 14:37:10 +0000 |
commit | b8b069364289421a875bdc6227c8554161e26183 (patch) | |
tree | 6532f12b333058b12266ad6229d7c9b1125ba0aa | |
parent | 67053eb10422d46f3200da6e1624cd4363b72a62 (diff) |
Revert "app: address Overdraw lint" (#1876)
-rw-r--r-- | app/lint.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_git_clone.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_clone.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_key_selection.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_welcome.xml | 1 |
5 files changed, 12 insertions, 1 deletions
diff --git a/app/lint.xml b/app/lint.xml index 29ad01f4..94b241ca 100644 --- a/app/lint.xml +++ b/app/lint.xml @@ -13,6 +13,12 @@ <issue id="MissingQuantity"> <ignore path="src/main/res/values-fr/strings.xml" /> </issue> + <issue id="Overdraw"> + <ignore path="src/main/res/layout/activity_git_clone.xml" /> + <ignore path="src/main/res/layout/fragment_clone.xml" /> + <ignore path="src/main/res/layout/fragment_key_selection.xml" /> + <ignore path="src/main/res/layout/fragment_welcome.xml" /> + </issue> <issue id="TrustAllX509TrustManager"> <ignore regexp="bouncycastle" /> <ignore regexp="eclipse/jgit" /> diff --git a/app/src/main/res/layout/activity_git_clone.xml b/app/src/main/res/layout/activity_git_clone.xml index 7980f738..6c991faa 100644 --- a/app/src/main/res/layout/activity_git_clone.xml +++ b/app/src/main/res/layout/activity_git_clone.xml @@ -8,7 +8,9 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="?android:attr/windowBackground" android:padding="@dimen/activity_horizontal_margin" + tools:background="@color/white" tools:context="dev.msfjarvis.aps.ui.git.config.GitServerConfigActivity"> <androidx.constraintlayout.widget.ConstraintLayout diff --git a/app/src/main/res/layout/fragment_clone.xml b/app/src/main/res/layout/fragment_clone.xml index f85cafac..cb2cc04e 100644 --- a/app/src/main/res/layout/fragment_clone.xml +++ b/app/src/main/res/layout/fragment_clone.xml @@ -6,7 +6,8 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + 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 bc4f5367..937d8751 100644 --- a/app/src/main/res/layout/fragment_key_selection.xml +++ b/app/src/main/res/layout/fragment_key_selection.xml @@ -7,6 +7,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="?android:attr/colorBackground" android:orientation="vertical"> <androidx.appcompat.widget.AppCompatImageView diff --git a/app/src/main/res/layout/fragment_welcome.xml b/app/src/main/res/layout/fragment_welcome.xml index 0e71b88d..18e90082 100644 --- a/app/src/main/res/layout/fragment_welcome.xml +++ b/app/src/main/res/layout/fragment_welcome.xml @@ -7,6 +7,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="?android:attr/colorBackground" android:orientation="vertical"> <com.google.android.material.button.MaterialButton |