Files
RidgeScout/app/src/main/res/layout/fragment_transfer_bluetooth_receiver.xml
T
2024-07-28 15:49:44 -06:00

29 lines
944 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/statusTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Not listening"
android:textSize="18sp"
android:layout_marginBottom="16dp" />
<Button
android:id="@+id/startListeningButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Start Listening" />
<Button
android:id="@+id/stopListeningButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Stop Listening"
android:enabled="false" />
</LinearLayout>