16 lines
662 B
XML
16 lines
662 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:viewBindingIgnore="true">
|
|
|
|
<org.thoughtcrime.securesms.components.ZoomingImageView
|
|
android:id="@+id/zooming_image_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:clickable="false"
|
|
android:contentDescription="@string/media_preview_activity__media_content_description" />
|
|
|
|
</FrameLayout>
|