diff options
| author | Claude <noreply@anthropic.com> | 2026-04-10 21:19:43 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-10 21:19:43 +0000 |
| commit | 35b214094a5563ae5b6cbd7cdff1e1617ca33184 (patch) | |
| tree | 3315bbf085ba795f4f98c0b4095774ddf3bda03f /android-app/app/src/main | |
| parent | 11226211d9bbfd9ec255d9a957531faaa9ace1ee (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
Diffstat (limited to 'android-app/app/src/main')
| -rw-r--r-- | android-app/app/src/main/res/layout/fragment_pretrip_report.xml | 2 |
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" |
