summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-04-10 21:19:43 +0000
committerClaude <noreply@anthropic.com>2026-04-10 21:19:43 +0000
commit35b214094a5563ae5b6cbd7cdff1e1617ca33184 (patch)
tree3315bbf085ba795f4f98c0b4095774ddf3bda03f
parent11226211d9bbfd9ec255d9a957531faaa9ace1ee (diff)
Fix invalid colorBackground theme attr in pretrip layout
colorBackground is not a Material theme attribute; replace with colorSurface which is the correct equivalent. https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX
-rw-r--r--android-app/app/src/main/res/layout/fragment_pretrip_report.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-app/app/src/main/res/layout/fragment_pretrip_report.xml b/android-app/app/src/main/res/layout/fragment_pretrip_report.xml
index 5f3fb67..510411b 100644
--- a/android-app/app/src/main/res/layout/fragment_pretrip_report.xml
+++ b/android-app/app/src/main/res/layout/fragment_pretrip_report.xml
@@ -4,7 +4,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="?attr/colorBackground">
+ android:background="?attr/colorSurface">
<LinearLayout
android:layout_width="match_parent"