2015-08-30 17:56:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-09-05 20:52:47 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
2015-08-30 17:56:46 +00:00
|
|
|
|
2015-11-15 18:30:30 +00:00
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
|
android:layout_width="match_parent"
|
2015-09-05 20:52:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-03-16 12:52:42 +00:00
|
|
|
style="@style/CardView.Default">
|
2015-08-30 17:56:46 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-08-30 17:56:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
style="@style/CardContent.Compact">
|
2015-08-30 17:56:46 +00:00
|
|
|
|
|
|
|
|
|
2015-09-02 19:36:26 +00:00
|
|
|
<LinearLayout
|
2017-02-01 15:58:53 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:weightSum="1.0"
|
|
|
|
|
android:baselineAligned="false">
|
2015-09-02 19:36:26 +00:00
|
|
|
|
2015-09-05 20:52:47 +00:00
|
|
|
<LinearLayout
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_width="0dp"
|
2015-09-02 19:36:26 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_weight="0.5">
|
2015-09-05 20:52:47 +00:00
|
|
|
|
2015-11-15 18:30:30 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/user_background_layout"
|
2015-09-05 20:52:47 +00:00
|
|
|
android:layout_width="wrap_content"
|
2015-11-15 18:30:30 +00:00
|
|
|
|
2015-09-05 20:52:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_gravity="left|center"
|
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/user_label"
|
|
|
|
|
style="@style/ChatMessageUserTextViewStyle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:ellipsize="middle"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:lines="1" />
|
2015-11-15 18:30:30 +00:00
|
|
|
</LinearLayout>
|
2015-09-05 20:52:47 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
2015-11-15 18:30:30 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
2015-09-05 20:52:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_weight="0.5"
|
|
|
|
|
android:gravity="right">
|
2015-09-02 19:36:26 +00:00
|
|
|
|
2015-11-15 18:30:30 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center|right"
|
|
|
|
|
android:layout_margin="5dp">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/like_background_layout"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical|right"
|
|
|
|
|
|
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tvLikes"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:clickable="true"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:gravity="center_vertical" />
|
2015-11-15 18:30:30 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/btn_options"
|
|
|
|
|
android:layout_width="25dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="5dp"
|
2015-12-08 23:12:18 +00:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
|
android:layout_marginRight="8dp"
|
2015-11-15 18:30:30 +00:00
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
|
android:layout_weight="0.06"
|
|
|
|
|
android:src="@drawable/ic_action_more_vert" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
2015-09-05 20:52:47 +00:00
|
|
|
|
2016-06-21 09:28:51 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
2015-11-15 18:30:30 +00:00
|
|
|
android:id="@+id/message_text"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:lineSpacingMultiplier="1.0" />
|
2015-09-05 20:52:47 +00:00
|
|
|
|
2015-11-15 18:30:30 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/ago_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center|right"
|
|
|
|
|
android:layout_marginRight="8dp"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:ellipsize="end" />
|
2015-11-15 18:30:30 +00:00
|
|
|
</LinearLayout>
|
2015-09-05 20:52:47 +00:00
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
</LinearLayout>
|