mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 10:47:30 +00:00
20 lines
684 B
XML
20 lines
684 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<include
|
||
|
android:id="@+id/item_feed_top"
|
||
|
layout="@layout/item_feed_top" />
|
||
|
|
||
|
<awais.instagrabber.customviews.drawee.ZoomableDraweeView
|
||
|
android:id="@+id/imageViewer"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="200dp"
|
||
|
android:background="@android:color/transparent" />
|
||
|
|
||
|
<include
|
||
|
android:id="@+id/item_feed_bottom"
|
||
|
layout="@layout/item_feed_bottom" />
|
||
|
</LinearLayout>
|