mirror of
https://github.com/Team4388/RidgeScout.git
synced 2026-06-09 08:38:03 -06:00
29 lines
944 B
XML
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> |