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"
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<awais.instagrabber.customviews.CircularImageView
|
|
|
|
android:id="@+id/ivProfilePic"
|
|
|
|
android:layout_width="@dimen/feed_profile_size"
|
|
|
|
android:layout_height="@dimen/feed_profile_size"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:background="?selectableItemBackgroundBorderless" />
|
|
|
|
|
2020-07-27 19:48:26 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/infoContainer"
|
|
|
|
android:layout_width="match_parent"
|
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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:weightSum="2"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:paddingStart="4dp"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingEnd="4dp"
|
2020-07-27 19:48:26 +00:00
|
|
|
android:paddingRight="4dp">
|
|
|
|
|
|
|
|
<awais.instagrabber.customviews.RamboTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textColor="@color/feed_text_primary_color"
|
|
|
|
android:textSize="18sp"/>
|
|
|
|
|
|
|
|
<awais.instagrabber.customviews.RamboTextView
|
|
|
|
android:id="@+id/location"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/title"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textColor="@color/feed_text_primary_color"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
</RelativeLayout>
|
2020-07-01 17:08:28 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/viewStoryPost"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
app:srcCompat="@android:drawable/ic_menu_set_as" />
|
|
|
|
</LinearLayout>
|