aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/conversation_list_row.xml
blob: 74e8459342e2fffe2f345d75f10ea2cd535d5275 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="8dp"
	android:descendantFocusability="blocksDescendants"
	android:id="@+id/conversationListRowFrame"
	android:background="@color/primaryBackground">

    <View
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:background="@color/red500"/>

    <FrameLayout
        android:id="@+id/swipeable_item"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/grey50">

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="?android:selectableItemBackground"
            android:orientation="horizontal"
            android:padding="8dp"
		android:id="@+id/conversationListRowContent">

            <com.makeramen.roundedimageview.RoundedImageView
                android:id="@+id/conversation_image"
                android:layout_width="56dp"
                android:layout_height="56dp"
                android:layout_alignParentLeft="true"
                android:scaleType="centerCrop"
                app:riv_corner_radius="2dp"/>

		<TextView
			android:layout_width="56dp"
			android:layout_height="4dp"
			android:textAppearance="?android:attr/textAppearanceSmall"
			android:id="@+id/status"
			android:layout_below="@+id/conversation_image"
			android:paddingTop="8dp"
			android:paddingRight="8dp"/>

            <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@+id/conversation_image"
                android:paddingLeft="8dp">

                <TextView
                    android:id="@+id/conversation_name"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignLeft="@+id/conversation_lastwrapper"
                    android:layout_toLeftOf="@+id/conversation_lastupdate"
                    android:paddingRight="4dp"
                    android:singleLine="true"
                    android:text="Awesome groupchat"
                    android:textColor="@color/primaryText"
                    android:textSize="?attr/TextSizeHeadline"
                    android:typeface="sans"/>

                <RelativeLayout
                    android:id="@+id/conversation_lastwrapper"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/conversation_name"
                    android:layout_marginTop="4dp">

                    <LinearLayout android:layout_width="match_parent"
                                  android:layout_height="wrap_content"
                                  android:layout_alignParentLeft="true"
                                  android:layout_centerVertical="true"
                                  android:layout_toLeftOf="@+id/notification_status"
                                  android:orientation="vertical">

				<github.ankushsachdeva.emojicon.EmojiconTextView
					android:id="@+id/conversation_lastmsg"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:scrollHorizontally="false"
					android:singleLine="true"
                            android:text="This is a placeholder text to show the last messages"
					android:textColor="@color/primaryText"
					android:textSize="?attr/TextSizeBody"
					app:emojiconSize="?attr/EmojiconSizeBody" />

                        <com.makeramen.roundedimageview.RoundedImageView
                            android:id="@+id/conversation_lastimage"
                            android:layout_width="fill_parent"
                            android:layout_height="36dp"
                            android:background="@color/primaryText"
                            android:scaleType="centerCrop"
                            android:visibility="gone"
                            app:riv_corner_radius="2dp"/>
                    </LinearLayout>
                    <ImageView
                        android:id="@+id/notification_status"
                        android:layout_width="16sp"
                        android:layout_height="16sp"
                        android:layout_alignParentRight="true"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="4dp"
                        android:src="@drawable/ic_notifications_grey600_24dp"
                        />
                </RelativeLayout>

                <TextView
                    android:id="@+id/conversation_lastupdate"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignBaseline="@+id/conversation_name"
                    android:layout_alignParentRight="true"
                    android:gravity="right"
                    android:text="23:42"
                    android:textColor="@color/secondaryText"
                    android:textSize="?attr/TextSizeInfo"/>
            </RelativeLayout>
        </RelativeLayout>
    </FrameLayout>
</FrameLayout>