Files
RidgeScout/app/src/main/res/layout/fragment_transfer_bluetooth_sender.xml
T

21 lines
656 B
XML
Raw Normal View History

2024-07-23 22:38:37 -06:00
<?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">
<ListView
android:id="@+id/deviceListView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<Button
android:id="@+id/sendFileButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send File"
android:enabled="false" />
</LinearLayout>