summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/drawable
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-07-02 01:35:07 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-07-02 01:35:07 +0000
commit1893aee8e9a23fdc51e203c918f52374fa601d7d (patch)
treeb36481a695a940fea34ad1bb6afa475f3fcf3bc3 /android-app/app/src/main/res/drawable
parent801288968198814b77e0a740da72db3cfb584872 (diff)
fix(ui): layer previews, fishing pole icon, button alignment, safety page cleanup
- Layer picker: change android:src→android:background on preview ImageViews; shape drawables have no intrinsic size so centerCrop renders blank — background fills correctly - Replace ic_fish with ic_fishing_pole (rod + reel + line + hook vector) - Move fab_fishing to CoordinatorLayout with layout_anchor on instrument_bottom_sheet top|start, matching fab_record_track positioning so both FABs sit level at sheet top - Raise fishing_overlay marginBottom 140dp→200dp to clear the realigned FAB - Safety: remove HELP button + DocFragment import from SafetyFragment; rename Quit→Quit App 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/ic_fishing_pole.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/drawable/ic_fishing_pole.xml b/android-app/app/src/main/res/drawable/ic_fishing_pole.xml
new file mode 100644
index 0000000..a8cbfdc
--- /dev/null
+++ b/android-app/app/src/main/res/drawable/ic_fishing_pole.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+ <!-- Rod -->
+ <path
+ android:fillColor="#00000000"
+ android:pathData="M4,20 L20,4"
+ android:strokeColor="@android:color/white"
+ android:strokeWidth="2.5"
+ android:strokeLineCap="round"/>
+ <!-- Reel at butt end -->
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M6,18 m-2,0 a2,2 0 1,0 4,0 a2,2 0 1,0 -4,0"/>
+ <!-- Fishing line from tip, curving down -->
+ <path
+ android:fillColor="#00000000"
+ android:pathData="M20,4 C23,9 22,15 20,19"
+ android:strokeColor="@android:color/white"
+ android:strokeWidth="1"
+ android:strokeLineCap="round"/>
+ <!-- Hook -->
+ <path
+ android:fillColor="#00000000"
+ android:pathData="M20,19 Q21,23 18,23 Q16,23 16,21"
+ android:strokeColor="@android:color/white"
+ android:strokeWidth="1.5"
+ android:strokeLineCap="round"
+ android:strokeLineJoin="round"/>
+</vector>