Skip to content

Commit

Permalink
Fix blurred icons on older devices with low resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-BaptisteC committed Jan 25, 2024
1 parent 3532294 commit 5ab5749
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/layout-land/fragment_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
app:layout_constraintTop_toBottomOf="@id/toolbar"
android:layout_marginStart="50dp"
android:contentDescription="@string/app_logo"
android:src="@drawable/ic_logo" />
app:srcCompat="@drawable/ic_logo" />

<com.google.android.material.textview.MaterialTextView
android:id="@+id/appNameTV"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout-sw600dp-land/fragment_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
android:layout_height="96dp"
android:layout_marginStart="80dp"
android:contentDescription="@string/app_logo"
android:src="@drawable/ic_logo"
app:srcCompat="@drawable/ic_logo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
android:layout_width="96dp"
android:layout_height="96dp"
android:contentDescription="@string/app_logo"
android:src="@drawable/ic_logo" />
app:srcCompat="@drawable/ic_logo" />

<com.google.android.material.textview.MaterialTextView
android:id="@+id/appNameTV"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_apps.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:contentDescription="@string/refresh"
android:src="@drawable/ic_update"
app:srcCompat="@drawable/ic_update"
app:backgroundTint="@color/chipColor"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_tracker_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
android:layout_height="48dp"
android:backgroundTint="@android:color/transparent"
android:contentDescription="@string/open_tracker_page"
android:src="@drawable/ic_website"
app:srcCompat="@drawable/ic_website"
app:layout_constraintBottom_toBottomOf="@+id/toolbarTD"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/toolbarTD" />
Expand Down

0 comments on commit 5ab5749

Please sign in to comment.