1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-31 19:13:27 +02:00
Gadgetbridge/app/src/main/res/layout/spinner_with_image_layout.xml

21 lines
699 B
XML
Raw Normal View History

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/spinner_item_icon"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_gravity="center_horizontal|center_vertical"
android:padding="10dp" />
<TextView
android:id="@+id/spinner_item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_gravity="center_vertical"
>
</TextView>
</LinearLayout>