Skip to content

Commit

Permalink
Ensure Bluetooth device list can be scrolled
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Jul 19, 2024
1 parent d1c1d16 commit b7d6ecf
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions app/src/main/res/layout/dialog_devices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@
android:layout_marginBottom="2dp"
android:background="@drawable/bottom_divider"/>

<LinearLayout
android:id="@+id/bluetooth_paired"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<LinearLayout
android:id="@+id/bluetooth_paired"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/shop_hardware"
Expand Down

0 comments on commit b7d6ecf

Please sign in to comment.