WAI
Status Update
Comments
lb...@gmail.com <lb...@gmail.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Android build
Which Android build are you using? (e.g. PPP5.180610.010)
From the provided description it seems you are reporting this bug from an end user's perspective. Kindly confirm the same.
Could you please share a bugreport.
Android build
Which Android build are you using? (e.g. PPP5.180610.010)
From the provided description it seems you are reporting this bug from an end user's perspective. Kindly confirm the same.
Could you please share a bugreport.
gs...@gmail.com <gs...@gmail.com> #3
The devices I have experienced this on are:
Samsung Galaxy S22+
Android 13
Build number TP1A.220624.014.S906USQ2BWA2
Hisense 65U6H TV with Google TV
Android 11
Build number RTT2.220118.001
I understand you are primarily looking for Pixel or AOSP specific bugs, but the problems are discussed affecting multiple Android products and if the problem is with the firmware update to the controller, I'd like to at least draw attention to it in hopes it reaches the correct people to address.
Yes, I am reporting from an end user's perspective.
I had tried to include a bug report numerous times prior to submitting this issue, but my phone would not generate it. I never received a notification that it had been generated. I will continue to try and attach it.
Samsung Galaxy S22+
Android 13
Build number TP1A.220624.014.S906USQ2BWA2
Hisense 65U6H TV with Google TV
Android 11
Build number RTT2.220118.001
I understand you are primarily looking for Pixel or AOSP specific bugs, but the problems are discussed affecting multiple Android products and if the problem is with the firmware update to the controller, I'd like to at least draw attention to it in hopes it reaches the correct people to address.
Yes, I am reporting from an end user's perspective.
I had tried to include a bug report numerous times prior to submitting this issue, but my phone would not generate it. I never received a notification that it had been generated. I will continue to try and attach it.
lb...@gmail.com <lb...@gmail.com> #4
Bug report attached
Description
Version used:
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.2.0-alpha05'
implementation 'androidx.cardview:cardview:1.0.0'
Theme used:
Theme.MaterialComponents.DayNight.DarkActionBar
Devices/Android versions reproduced on:
Emulator with Android API 29, but also before.
- Relevant code to trigger the issue.
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="12dp"
android:clipChildren="false" android:minHeight="?attr/actionBarSize"
app:cardCornerRadius="8dp" app:cardElevation="8dp">
<TextView
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="weird color" />
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="12dp"
android:clipChildren="false" android:minHeight="?attr/actionBarSize" app:cardBackgroundColor="#3c454c"
app:cardCornerRadius="8dp" app:cardElevation="8dp">
<TextView
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="weird color 2" />
</com.google.android.material.card.MaterialCardView>
- A screenrecord or screenshots showing the issue (if UI related).
Attached
Basically the issue is that I can't set the color of #3c454c to the MaterialCardView, either via style (theme) or by force.
Instead, it gets the color of #525A61
It seems similar, but it's not the same color.