This commit is contained in:
ろむねこ 2024-01-17 16:59:59 +09:00
parent 495672edde
commit f9804c1569
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,14 +1,21 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:context=".SettingFragment"> android:orientation="vertical"
tools:context=".SettingFragment" >
<!-- TODO: Update blank fragment layout --> <Button
<TextView android:id="@+id/button_print_qr"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="wrap_content"
android:text="@string/hello_blank_fragment" /> android:text="QRコード印刷" />
</FrameLayout> <Button
android:id="@+id/button_bluetooth_setting"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Bluetooth設定" />
</LinearLayout>