diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2022-01-17 14:42:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 14:42:48 +0100 |
commit | 604d2827bed1f35153467303845ea1ed05e67011 (patch) | |
tree | d8676df4c0d6e15a4c1bbc24016642d17c9fcd54 /app | |
parent | Update list_menu_1.xml (diff) | |
download | xManager-604d2827bed1f35153467303845ea1ed05e67011.tar xManager-604d2827bed1f35153467303845ea1ed05e67011.tar.gz xManager-604d2827bed1f35153467303845ea1ed05e67011.tar.bz2 xManager-604d2827bed1f35153467303845ea1ed05e67011.tar.lz xManager-604d2827bed1f35153467303845ea1ed05e67011.tar.xz xManager-604d2827bed1f35153467303845ea1ed05e67011.tar.zst xManager-604d2827bed1f35153467303845ea1ed05e67011.zip |
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/list_menu_2.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/src/main/res/layout/list_menu_2.xml b/app/src/main/res/layout/list_menu_2.xml index f4979b6..e5dcca8 100644 --- a/app/src/main/res/layout/list_menu_2.xml +++ b/app/src/main/res/layout/list_menu_2.xml @@ -14,26 +14,29 @@ android:orientation="horizontal">
<ImageView
android:id="@+id/icon"
+ android:focusable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_spotify_2"
- android:scaleType="center"/>
+ android:scaleType="center" />
<TextView
android:id="@+id/title"
+ android:focusable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="TITLE"
android:textSize="12sp"
android:textStyle="bold"
- android:textColor="#FFFFFF"/>
+ android:textColor="#FFFFFF" />
</LinearLayout>
<TextView
android:id="@+id/link"
+ android:focusable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="LINK"
android:textSize="12sp"
- android:textColor="#000000"/>
+ android:textColor="#000000" />
</LinearLayout>
|