WAI
Status Update
Comments
si...@gmail.com <si...@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.
lp...@google.com <lp...@google.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.
si...@gmail.com <si...@gmail.com> #4
Bug report attached
lp...@google.com <lp...@google.com> #5
It looks like you are raising this request as an Android user, rather than an Android Open Source Developer. Our Android Support team will be in contact with you shortly.
In the meantime, here are helpful resources:
si...@gmail.com <si...@gmail.com> #6
Please visit the Stadia community forum where Product Experts may be able to assist you further: https://community.stadia.com/t5/Community/ct-p/en_community . We are marking this public bug status as "Duplicate" as it will be duplicative of the feedback you provide via the suggested channel. We will no longer provide responses or updates on this bug, but rather will investigate further based on the feedback you submit.
Description
Version used: 1.1.0-alpha01
Theme used: PreferenceThemeOverlay
Devices/Android versions reproduced on: checked on API 26 and 28
A some padding is present on both the preference categories and the preferences themselves. I have to set iconSpaceReserved=false manually to get rid of it. Otherwise iconSpaceReserved returns true and leaves space for icon even if it's not set.
Sample preferences.xml:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="
xmlns:app="
<PreferenceCategory android:title="Category 1">
<Preference
android:key="pref1"
android:title="Preference 1" />
<Preference
android:key="pref2"
android:title="Preference 2" />
</PreferenceCategory>
<PreferenceCategory
android:title="Category 2"
app:iconSpaceReserved="false">
<Preference
android:key="pref3"
android:title="Preference 3" />
<Preference
android:key="pref4"
android:title="Preference 4"
app:iconSpaceReserved="false" />
</PreferenceCategory>
<PreferenceCategory android:title="Category 3">
<ListPreference
android:key="pref5"
android:title="List Preference" />
<CheckBoxPreference
android:checked="true"
android:key="pref6"
android:title="Checkbox" />
<SwitchPreference
android:key="pref7"
android:title="Switch" />
</PreferenceCategory>
</PreferenceScreen>
After looking at the sources of PreferenceThemeOverlay I found that any preference style has attribute
<item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item>
which refers to
values/values.xml
<bool name="config_materialPreferenceIconSpaceReserved">false</bool>
and
values-sw360dp-v13/values-sw360dp-v13.xml
<bool name="config_materialPreferenceIconSpaceReserved">true</bool>