Finished lesson 4
[Sunshine.git] / app / src / main / res / layout / fragment_detail.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <LinearLayout
4 android:orientation="horizontal"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:padding="16dp"
8 xmlns:android="http://schemas.android.com/apk/res/android">
9
10 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
11 android:layout_width="wrap_content"
12 android:layout_height="match_parent"
13 android:id="@+id/detail_date_textview" />
14
15 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
16 android:layout_width="wrap_content"
17 android:layout_height="match_parent"
18 android:text=" - " />
19
20 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
21 android:layout_width="wrap_content"
22 android:layout_height="match_parent"
23 android:id="@+id/detail_forecast_textview" />
24
25 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
26 android:layout_width="wrap_content"
27 android:layout_height="match_parent"
28 android:text=" - " />
29
30 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
31 android:layout_width="wrap_content"
32 android:layout_height="match_parent"
33 android:id="@+id/detail_high_textview" />
34
35 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
36 android:layout_width="wrap_content"
37 android:layout_height="match_parent"
38 android:text="/" />
39
40 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
41 android:layout_width="wrap_content"
42 android:layout_height="match_parent"
43 android:id="@+id/detail_low_textview" />
44
45 </LinearLayout>
46
47
48
49