PR 24

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

24)

<Button

android:id="@+id/getVisibleButton"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="Get Visible"/>

<Button

android:id="@+id/listDevicesButton"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="List Devices"/>

<Button

<?xml version="1.0" encoding="utf-8"?> android:id="@+id/turnOffButton"

<LinearLayout android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/
android:layout_height="wrap_content"
apk/res/android"
android:text="Turn Off Bluetooth"/>
android:layout_width="match_parent"

android:layout_height="match_parent"
<ListView
android:orientation="vertical"
android:id="@+id/pairedDevicesListView"
android:padding="16dp">
android:layout_width="match_parent"

android:layout_height="0dp"
<Button
android:layout_weight="1"
android:id="@+id/turnOnButton"
android:divider="@null"
android:layout_width="match_parent"
android:dividerHeight="0dp" />
android:layout_height="wrap_content"

android:text="Turn On Bluetooth"/>
</LinearLayout>

You might also like