33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
|
|
android:id="@+id/ssiv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:restoreStrategy="deferred" />
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:indeterminate="true" />
|
|
|
|
<ViewStub
|
|
android:id="@+id/stub_error"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout="@layout/item_error_state" />
|
|
|
|
</FrameLayout>
|