Mostly split the interface to use the database
[Sunshine.git] / app / src / main / res / layout / list_item_forecast.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 android:orientation="horizontal"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:gravity="center_vertical"
8 android:minHeight="?android:attr/listPreferredItemHeight"
9 android:padding="16dp"
10 >
11
12 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
13 android:layout_width="wrap_content"
14 android:layout_height="match_parent"
15 android:id="@+id/list_item_date_textview" />
16
17 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="wrap_content"
19 android:layout_height="match_parent"
20 android:text=" - " />
21
22 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
23 android:layout_width="wrap_content"
24 android:layout_height="match_parent"
25 android:id="@+id/list_item_forecast_textview" />
26
27 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
28 android:layout_width="wrap_content"
29 android:layout_height="match_parent"
30 android:text=" - " />
31
32 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
33 android:layout_width="wrap_content"
34 android:layout_height="match_parent"
35 android:id="@+id/list_item_high_textview" />
36
37 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
38 android:layout_width="wrap_content"
39 android:layout_height="match_parent"
40 android:text="/" />
41
42 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
43 android:layout_width="wrap_content"
44 android:layout_height="match_parent"
45 android:id="@+id/list_item_low_textview" />
46
47 </LinearLayout>