material-components-android
material-components-android copied to clipboard
Modular and customizable Material Design UI components for Android
In the current version of applyThemeOverlay(), the theme overlay is applied to the ***ALREADY CREATED*** window decorView (https://github.com/material-components/material-components-android/commit/56ed07008ba0bff682e99c5d91126596fe9e6ddf). closes #3969
In my app (Java), I'm currently using `SwipeRefreshLayout` to refresh a `Recyclerview` ("pull-to-refresh"). While the list is refreshed, I currently show a Circular Progress Indicator. Is it possible to replace...
**Description:** ``` I have a LinearProgressIndicator in a dialog with indeterminate set to true. The dialog opens, and the progress indicator works correctly. Now, I put the phone into standby...

Before(screen width: 914dp) After(screen width: 914dp)
**com.google.android.material:material:1.12.0** **Is your feature request related to a problem? Please describe.** When I adapted EdgeToEdge to publish to the Play Store, I received a prompt: your app uses deprecated APIs...
**Description:** In a RecyclerView's ViewHolder, which has a "myMaterialButton", when binding the data I have this code: final BadgeDrawable badgeDrawable = BadgeDrawable.create(myMaterialButton.getContext()); badgeDrawable.setNumber(25); badgeDrawable.setVisible(true); BadgeUtils.attachBadgeDrawable(badgeDrawable, myMaterialButton); => works, the badge...