material-components-android icon indicating copy to clipboard operation
material-components-android copied to clipboard

Modular and customizable Material Design UI components for Android

Results 477 material-components-android issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [com.google.dagger:dagger-android](https://github.com/google/dagger) from 2.51.1 to 2.52. Release notes Sourced from com.google.dagger:dagger-android's releases. Dagger 2.52 Notes: Dagger KSP now requires at least KSP 1.9.24-1.0.20. Bug fixes Fixed #4302: Suppress deprecation warnings...

dependencies

### Thanks for starting a pull request on Material Components! #### Don't forget: - [x] Identify the component the PR relates to in brackets in the title. `[Buttons] Updated documentation`...

**Description:** I have already raised a Stack Overflow question for the same: (https://stackoverflow.com/q/71338984/9520315) **Expected behavior:** The card shouldn't blink while returning from another activity. **Source code:** "Transition between activities" section...

bug
Feature: Transition
Widget: Card

**Description:** Expanded BottomSheetDialog shouldn't have top insets when it's in the bottom split screen. **Repro steps:** 1. Open app in portrait 1. Open Recents 1. Select "split screen" 1. Press...

bug
Widget: BottomSheet

**Description:** https://github.com/user-attachments/assets/aba1672c-4bad-412f-9b4d-0b69870ec653 **Source code:** ```java // ... View anchorView = view.findViewById(R.id.anchor_view); ValueAnimator animation = ValueAnimator.ofInt(100, -400); animation.setDuration(3000); animation.setRepeatMode(Animation.REVERSE); animation.setRepeatCount(Animation.INFINITE); animation.addUpdateListener(updatedAnimation -> { ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) anchorView.getLayoutParams(); params.setMargins(0, 0, 0,...

bug
Widget: Snackbar

Feature request to add `SideSheetDialogFragment` (by analogy with [`BottomSheetDialogFragment`](https://github.com/material-components/material-components-android/blob/8f5a04c62b23aee01fa68aae8b467d7eb7c5e6ed/lib/java/com/google/android/material/bottomsheet/BottomSheetDialogFragment.java)).

feature request
Widget: SideSheet

**Description:** I am setting `android:windowTranslucentStatus` to true to achieve a transparent status bar to blend with the **ImageView** of a **CollapsingToolbar** when expanded and it follows `android:statusBarColor` when collapsed in...

bug
Widget: TopAppBar

**Description:** We're using the com.google.android.material.progressindicator.LinearProgressIndicator component, and while calling the show() function and having the progress indicator setting indeterminate to true, it seems that only the default track color appears...

bug
Widget: ProgressIndicator

It would be convenient to do something similar to this https://github.com/material-components/material-components-android/issues/1688 (MaterialDatePicker - Make picker not final) but for MaterialTimePicker

feature request
Widget: TimePicker