1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-11-05 22:47:30 +00:00
BarInsta/app/src/main/res/layout/item_feed.xml
Austin Huang 13beabf741
init
2020-07-01 13:08:28 -04:00

17 lines
607 B
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:viewBindingIgnore="true">
<include layout="@layout/item_feed_top" />
<com.github.chrisbanes.photoview.PhotoView
android:id="@+id/imageViewer"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<include layout="@layout/item_feed_bottom" />
</LinearLayout>