mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-13 13:39:26 +01:00
5c3c23ea50
- makes nicer dashboard, unify with design in Activity List - dashboard is now part of the sports activities list (had to overcome some hurdles, because of the multiselect for sharing) - add icons to Spinners in Sports Filter
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> |