mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-15 19:27:31 +00:00
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
|
<?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" />
|
||
|
|
||
|
<awais.instagrabber.customviews.RamboTextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center_vertical"
|
||
|
android:paddingStart="4dp"
|
||
|
android:paddingLeft="4dp"
|
||
|
android:paddingEnd="4dp"
|
||
|
android:paddingRight="4dp"
|
||
|
android:textColor="@color/feed_text_primary_color"
|
||
|
android:textSize="18sp" />
|
||
|
|
||
|
<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>
|