mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
21 lines
699 B
XML
21 lines
699 B
XML
|
<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>
|