Files
AndroidJava/dash-wallet/wallet/res/layout/screenshot_warning_widget.xml
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

37 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
style="@style/ScreenshotWarningPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
app:srcCompat="@drawable/ic_camera_frame"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_margin="13dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginVertical="10dp"
android:layout_marginEnd="10dp"
android:orientation="vertical">
<TextView
style="@style/Subtitle2.Red"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/verify_no_screenshot_title" />
<TextView
style="@style/Caption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:text="@string/verify_no_screenshot_message" />
</LinearLayout>
</LinearLayout>