|
10 | 10 | android:layout_height="wrap_content" |
11 | 11 | app:layout_constraintTop_toTopOf="parent" /> |
12 | 12 |
|
13 | | - <com.google.android.material.imageview.ShapeableImageView |
14 | | - android:id="@+id/app_icon" |
| 13 | + <FrameLayout |
| 14 | + android:id="@+id/app_icon_container" |
15 | 15 | android:layout_width="120dp" |
16 | 16 | android:layout_height="120dp" |
17 | | - android:src="@drawable/ic_icon_shape" |
18 | 17 | app:layout_constraintEnd_toEndOf="parent" |
19 | 18 | app:layout_constraintStart_toStartOf="parent" |
20 | | - app:layout_constraintTop_toBottomOf="@id/drag_handle" |
21 | | - app:shapeAppearance="@style/ShapeAppearance.Material3.ListItem.Last" /> |
| 19 | + app:layout_constraintTop_toBottomOf="@id/drag_handle"> |
| 20 | + |
| 21 | + <com.google.android.material.imageview.ShapeableImageView |
| 22 | + android:id="@+id/app_icon_shape" |
| 23 | + android:layout_width="match_parent" |
| 24 | + android:layout_height="match_parent" |
| 25 | + android:importantForAccessibility="no" |
| 26 | + android:src="@drawable/ic_icon_shape" /> |
| 27 | + |
| 28 | + <com.google.android.material.imageview.ShapeableImageView |
| 29 | + android:id="@+id/app_icon_logo" |
| 30 | + android:layout_width="match_parent" |
| 31 | + android:layout_height="match_parent" |
| 32 | + android:importantForAccessibility="no" |
| 33 | + android:src="@drawable/ic_icon_logo" /> |
| 34 | + </FrameLayout> |
22 | 35 |
|
23 | 36 | <com.google.android.material.textview.MaterialTextView |
24 | 37 | android:id="@+id/app_name" |
|
30 | 43 | android:textColor="?attr/colorOnSurface" |
31 | 44 | app:layout_constraintEnd_toEndOf="parent" |
32 | 45 | app:layout_constraintStart_toStartOf="parent" |
33 | | - app:layout_constraintTop_toBottomOf="@id/app_icon" /> |
| 46 | + app:layout_constraintTop_toBottomOf="@id/app_icon_container" /> |
34 | 47 |
|
35 | 48 | <com.google.android.material.button.MaterialButton |
36 | 49 | android:id="@+id/app_update" |
|
0 commit comments