2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-08-29 08:01:42 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="8dp">
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2020-08-24 15:05:54 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2020-07-01 17:08:28 +00:00
|
|
|
android:id="@+id/ivProfilePic"
|
2020-10-17 10:07:03 +00:00
|
|
|
android:layout_width="@dimen/profile_pic_size_regular"
|
|
|
|
android:layout_height="@dimen/profile_pic_size_regular"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
app:roundAsCircle="true" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2020-07-27 19:48:26 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/infoContainer"
|
2020-08-24 15:05:54 +00:00
|
|
|
android:layout_width="0dp"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2020-07-27 19:48:26 +00:00
|
|
|
android:animateLayoutChanges="true"
|
|
|
|
android:background="@null"
|
2020-09-18 19:18:14 +00:00
|
|
|
android:gravity="center"
|
2020-07-27 19:48:26 +00:00
|
|
|
android:orientation="vertical"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
android:paddingRight="8dp"
|
2020-08-24 15:05:54 +00:00
|
|
|
android:weightSum="2">
|
2020-07-27 19:48:26 +00:00
|
|
|
|
2020-10-24 09:10:21 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2020-07-27 19:48:26 +00:00
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
|
|
tools:text="username" />
|
2020-07-27 19:48:26 +00:00
|
|
|
|
2020-10-24 09:10:21 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2020-07-27 19:48:26 +00:00
|
|
|
android:id="@+id/location"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/title"
|
2021-05-15 03:47:22 +00:00
|
|
|
android:ellipsize="end"
|
2020-07-27 19:48:26 +00:00
|
|
|
android:gravity="center_vertical"
|
2021-05-15 03:47:22 +00:00
|
|
|
android:maxLines="1"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
2020-09-02 17:02:31 +00:00
|
|
|
android:textSize="15sp"
|
|
|
|
android:visibility="visible"
|
2020-08-29 08:01:42 +00:00
|
|
|
tools:text="location" />
|
2020-07-27 19:48:26 +00:00
|
|
|
</RelativeLayout>
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2020-10-24 09:10:21 +00:00
|
|
|
<!--<androidx.appcompat.widget.AppCompatImageView-->
|
|
|
|
<!-- android:id="@+id/viewStoryPost"-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
<!-- android:layout_gravity="center"-->
|
|
|
|
<!-- android:background="?selectableItemBackgroundBorderless"-->
|
|
|
|
<!-- app:srcCompat="@drawable/ic_open_in_new_24"-->
|
|
|
|
<!-- app:tint="?android:textColorPrimary" />-->
|
2020-07-01 17:08:28 +00:00
|
|
|
</LinearLayout>
|