-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Description
When i use dialog.builder the font size is correct but when i use MaterialAlertDialogBuilder the font size of body text is smaller. its ok?
implementation 'com.google.android.material:material:1.1.0-alpha06'
Im use this theme
<style name="AppTheme" parent="Theme.MaterialComponents.Light">
MaterialComponent
MaterialAlertDialogBuilder(this) .setMessage("This is a test of MaterialAlertDialogBuilder") .setPositiveButton("Ok", null) .show()
AlertDialog.Builder
AlertDialog.Builder(this)
.setMessage("This is a test of AlertDialog.Builder")
.setPositiveButton("Ok", null)
.show()
Where is the problem?
Metadata
Metadata
Assignees
Labels
No labels

