docs/docs-android/app/src/main/res/layout/file_viewpager_item.xml

23 lines
758 B
XML
Raw Normal View History

2014-11-22 01:09:12 +01:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
style="?android:progressBarStyleHorizontal"
android:layout_width="200dp"
android:layout_height="15dip"
android:id="@+id/fileProgressBar"
android:indeterminate="true"
2014-11-23 19:55:08 +01:00
android:layout_centerInParent="true"/>
2014-11-22 01:09:12 +01:00
<it.sephiroth.android.library.imagezoom.ImageViewTouch
android:id="@+id/fileImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"
2015-03-24 01:07:32 +01:00
android:src="@mipmap/ic_launcher"/>
2014-11-22 01:09:12 +01:00
</RelativeLayout>