-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmess_menu_widget.xml
More file actions
58 lines (51 loc) · 1.88 KB
/
mess_menu_widget.xml
File metadata and controls
58 lines (51 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mess_menu_widget"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/round_background"
android:orientation="vertical"
android:padding= "10dp"
>
<TextView
android:id="@+id/hostel_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
android:textStyle="bold"
android:textAlignment="center"/>
<TextView
android:id="@+id/day_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
android:textStyle="bold"
android:textAlignment="center"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:orientation="horizontal">
<TextView
android:id="@+id/meal_name_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/colorGray"
android:textSize="16sp" />
<TextView
android:id="@+id/meal_time_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="end"
android:textColor="@color/colorGray"
android:textSize="16sp" />
</LinearLayout>
<TextView
android:id="@+id/meal_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000000" />
</LinearLayout>