1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-28 13:47:30 +00:00
BarInsta/app/src/main/res/layout/item_feed_video.xml

19 lines
590 B
XML
Raw Normal View History

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"
android:id="@+id/videoHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2020-07-01 17:08:28 +00:00
<include
android:id="@+id/item_feed_top"
layout="@layout/item_feed_top" />
2020-07-01 17:08:28 +00:00
2020-10-17 10:07:03 +00:00
<include
android:id="@+id/video_post"
layout="@layout/layout_video_player_with_thumbnail" />
<include
android:id="@+id/item_feed_bottom"
layout="@layout/item_feed_bottom" />
2020-07-01 17:08:28 +00:00
</LinearLayout>