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

24 lines
926 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2022-07-18 10:08:07 -03:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-08-09 13:29:04 -03:00
xmlns:tools="http://schemas.android.com/tools"
tools:viewBindingIgnore="true"
2022-07-18 10:08:07 -03:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
2019-05-09 14:11:11 -03:00
android:layout_height="match_parent">
<org.signal.imageeditor.core.ImageEditorView
2019-05-09 14:11:11 -03:00
android:id="@+id/image_editor_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|center_horizontal"
2022-07-18 10:08:07 -03:00
android:gravity="center"
app:imageEditorView_blackoutColor="@color/signal_colorBackground" />
<org.thoughtcrime.securesms.scribbles.ImageEditorHudV2
android:id="@+id/scribble_hud"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>