summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/drawable
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-05-05 12:30:50 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-05-05 12:30:50 -1000
commit2123351fc1d1c529046c5179171e4d442ca20f55 (patch)
tree449e71d17ee2badb33163dccaac2b85e70b18a18 /android-app/app/src/main/res/drawable
parente73c2f6536fe4203a138424980226010eea5c5e6 (diff)
fix: keep bottom nav visible when panning; expand drag handle touch target
Bottom nav: remove it from the following/panning fade cycle — only fabRecenter and fabRecordTrack swap; nav stays visible throughout. Drag handle: 4dp × 36dp was too small and competed with BottomSheet drag gestures. Now 40dp tall via inset drawable (visual bar unchanged, touch area is a usable 40dp × 36dp). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android-app/app/src/main/res/drawable')
-rw-r--r--android-app/app/src/main/res/drawable/drag_handle_bg.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/drawable/drag_handle_bg.xml b/android-app/app/src/main/res/drawable/drag_handle_bg.xml
new file mode 100644
index 0000000..eea0325
--- /dev/null
+++ b/android-app/app/src/main/res/drawable/drag_handle_bg.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<inset xmlns:android="http://schemas.android.com/apk/res/android"
+ android:insetTop="18dp"
+ android:insetBottom="18dp">
+ <shape android:shape="rectangle">
+ <solid android:color="@color/md_theme_outline" />
+ <corners android:radius="2dp" />
+ </shape>
+</inset>