2017-01-10 17:14:27 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-10 23:24:45 +10:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-10 17:14:27 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-03-15 05:24:38 +11:00
|
|
|
android:layout_gravity="center"
|
2017-05-10 23:24:45 +10:00
|
|
|
android:clickable="true">
|
2017-05-08 07:58:56 +10:00
|
|
|
|
2017-05-05 00:16:24 +10:00
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
2017-01-10 17:14:27 +11:00
|
|
|
android:id="@+id/view_media_image"
|
|
|
|
android:layout_width="match_parent"
|
2017-05-12 11:31:29 +10:00
|
|
|
android:layout_height="match_parent" />
|
2017-05-10 23:24:45 +10:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/view_media_progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_gravity="center" />
|
2017-05-08 07:58:56 +10:00
|
|
|
|
2017-05-10 23:24:45 +10:00
|
|
|
</RelativeLayout>
|