Signal-Android/app/src/main/res/layout/zooming_image_view.xml

18 lines
862 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2022-08-09 13:29:04 -03:00
tools:viewBindingIgnore="true"
tools:context="org.thoughtcrime.securesms.components.ZoomingImageView">
2017-10-11 17:12:46 -07:00
<com.github.chrisbanes.photoview.PhotoView android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"/>
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
android:id="@+id/subsampling_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</merge>