More improvements to webtoon viewer

This commit is contained in:
inorichi
2015-11-11 04:56:16 +01:00
parent 692d3c1b2c
commit 089b5d3326
7 changed files with 97 additions and 14 deletions

View File

@@ -1,13 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/page_image_view" />
</LinearLayout>
android:layout_height="match_parent"
android:id="@+id/page_image_view" />

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"/>
<include layout="@layout/chapter_image"/>
</FrameLayout>