印刷画像の生成に用いるxmlを追加しました。

This commit is contained in:
it232115 2024-01-12 11:33:29 +09:00 committed by 磯野
parent 67df5a3ec2
commit 8f769c8e04

View File

@ -0,0 +1,33 @@
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".QrPrintFragment"
android:weightSum="1">
<!-- TODO: Update blank fragment layout -->
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="581dp"
android:layout_weight="1"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
app:srcCompat="@drawable/a_group_qr_sos"
android:layout_weight="0"/>
<ImageView
android:id="@+id/qr_view"
android:layout_width="0dp"
android:layout_height="0dp"
app:srcCompat="@drawable/ic_launcher_foreground"
android:layout_weight="0"/>
</LinearLayout>