mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-05 22:47:30 +00:00
17 lines
607 B
XML
17 lines
607 B
XML
|
<?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>
|