-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathagenda_item_default.xml
More file actions
executable file
·68 lines (56 loc) · 2.63 KB
/
Copy pathagenda_item_default.xml
File metadata and controls
executable file
·68 lines (56 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
app:cardCornerRadius="0dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#131313">
<ImageView
android:id="@+id/agendaicon"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginLeft="18dp"
android:layout_marginStart="18dp"
app:srcCompat="@drawable/ic_people_outline_black_24dp"
android:tint="#7422d7" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/agendaicon"
android:layout_centerInParent="true"
android:layout_marginBottom="33dp"
android:layout_marginLeft="18dp"
android:layout_toEndOf="@+id/agendaicon"
android:layout_toRightOf="@+id/agendaicon"
android:orientation="vertical">
<TextView
android:id="@+id/time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-condensed"
android:text="@string/agenda_item_time"
android:textColor="#666"
android:textSize="11sp" />
<TextView
android:id="@+id/subheading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/product_sans_regular"
android:text="@string/agenda_item_subheading"
android:textColor="#fff"
android:textSize="13sp"
android:layout_marginTop="4dp"/>
</LinearLayout>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>