Skip to content

Instantly share code, notes, and snippets.

@Lerie82
Created May 18, 2024 01:12
Show Gist options
  • Save Lerie82/fa60b730e61772197492c3d005159896 to your computer and use it in GitHub Desktop.
Save Lerie82/fa60b730e61772197492c3d005159896 to your computer and use it in GitHub Desktop.
<!-- activity_bluetooth.xml -->
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".BluetoothActivity">
<Button
android:id="@+id/btnScan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Scan"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="16dp"/>
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/btnScan"
android:layout_marginTop="16dp" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment