mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-12 17:57:29 +00:00
36 lines
1.4 KiB
XML
36 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:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<awais.instagrabber.customviews.RamboTextView
|
||
|
android:id="@+id/tvMessage"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="start|fill_horizontal"
|
||
|
android:padding="8dp"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||
|
android:textColor="?android:textColorPrimary" />
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/ivMediaPreview"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:maxHeight="@dimen/dm_media_img_max_height"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:adjustViewBounds="true" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/typeIcon"
|
||
|
android:layout_width="24dp"
|
||
|
android:layout_height="24dp"
|
||
|
android:layout_gravity="end|top"
|
||
|
android:layout_margin="8dp"
|
||
|
app:srcCompat="@drawable/video" />
|
||
|
</FrameLayout>
|
||
|
</LinearLayout>
|