2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-07-10 21:15:25 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:id="@+id/videoHolder"
|
|
|
|
android:layout_width="match_parent"
|
2021-07-10 21:15:25 +00:00
|
|
|
android:layout_height="wrap_content">
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2021-07-10 21:15:25 +00:00
|
|
|
<include layout="@layout/item_feed_top" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2021-07-10 21:15:25 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/post_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/buttons_top_barrier"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/top_barrier"
|
|
|
|
tools:layout_height="100dp" />
|
2020-08-24 15:05:54 +00:00
|
|
|
|
2021-07-10 21:15:25 +00:00
|
|
|
<include layout="@layout/layout_post_view_bottom" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|