Complete Material 3 migration with unified edge-to-edge#540
Merged
Conversation
Replace the manual edge-to-edge workaround in ApplicationEx (which only handled Android 15+ with custom insets/padding/background hacks) with a single EdgeToEdge.enable() call that works across all API levels. This uses SystemBarStyle.dark(colorPrimaryDark) for the status bar and transparent auto-scrim for the navigation bar. - Remove AppTheme.EdgeToEdge style and DetailsActivity manual setup - Migrate all AlertDialog.Builder → MaterialAlertDialogBuilder (7 files) - Migrate all TextAppearance.AppCompat → Material3 equivalents in XML - Migrate all Widget.AppCompat.Button → Material3 equivalents in XML - Migrate Theme.AppCompat/MaterialComponents → Material3 in layouts - Update ActionBarTitleText and text utility styles to M3 parents - Add explicit androidx.activity dependency for EdgeToEdge API https://claude.ai/code/session_01AKoCWnAeeHrRa4KjngEiTM
Without the explicit dark status bar style, EdgeToEdge.enable() defaults to transparent, and M3's light theme makes the status bar invisible. https://claude.ai/code/session_01AKoCWnAeeHrRa4KjngEiTM
The M3 migration section was completed work, not actionable. The important warning about dark status bar style now lives as a comment next to the EdgeToEdge.enable() call where it's most useful. https://claude.ai/code/session_01AKoCWnAeeHrRa4KjngEiTM
34b2b93 to
ab3de53
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace the manual edge-to-edge workaround in ApplicationEx (which only
handled Android 15+ with custom insets/padding/background hacks) with a
single EdgeToEdge.enable() call that works across all API levels. This
uses SystemBarStyle.dark(colorPrimaryDark) for the status bar and
transparent auto-scrim for the navigation bar.
https://claude.ai/code/session_01AKoCWnAeeHrRa4KjngEiTM