child_guard/app/src/main/res/layout/fragment_bluetooth_setup.xml

37 lines
1.2 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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/Bluetooth_setup"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".bluetooth_setupFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="登録可能デバイス"
/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="登録済みデバイス"
/>
<TextView
android:id="@+id/registered_device"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="50dp"/>
</LinearLayout>