Loading res/drawable/ic_bluetooth_more_vert.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <!-- ~ Copyright (C) 2025 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="960" android:viewportHeight="960" android:tint="?android:attr/colorControlNormal"> <path android:pathData="M480,800q-33,0 -56.5,-23.5T400,720q0,-33 23.5,-56.5T480,640q33,0 56.5,23.5T560,720q0,33 -23.5,56.5T480,800ZM480,560q-33,0 -56.5,-23.5T400,480q0,-33 23.5,-56.5T480,400q33,0 56.5,23.5T560,480q0,33 -23.5,56.5T480,560ZM480,320q-33,0 -56.5,-23.5T400,240q0,-33 23.5,-56.5T480,160q33,0 56.5,23.5T560,240q0,33 -23.5,56.5T480,320Z" android:fillColor="#1f1f1f"/> </vector> src/com/android/settings/bluetooth/BluetoothDetailsConfigurableFragment.kt +6 −1 Original line number Diff line number Diff line Loading @@ -342,7 +342,12 @@ abstract class BluetoothDetailsConfigurableFragment : RestrictedDashboardFragmen summary = context.getString( R.string.bluetooth_device_more_settings_preference_summary ) icon = context.getDrawable(R.drawable.ic_chevron_right_24dp) icon = context.getDrawable( if (Flags.enableBluetoothSettingsExpressiveDesign()) { R.drawable.ic_bluetooth_more_vert } else { R.drawable.ic_chevron_right_24dp }) onPreferenceClickListener = Preference.OnPreferenceClickListener { logItemClick(prefKey, EVENT_CLICK_PRIMARY) SubSettingLauncher(context).setDestination( Loading Loading
res/drawable/ic_bluetooth_more_vert.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <!-- ~ Copyright (C) 2025 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="960" android:viewportHeight="960" android:tint="?android:attr/colorControlNormal"> <path android:pathData="M480,800q-33,0 -56.5,-23.5T400,720q0,-33 23.5,-56.5T480,640q33,0 56.5,23.5T560,720q0,33 -23.5,56.5T480,800ZM480,560q-33,0 -56.5,-23.5T400,480q0,-33 23.5,-56.5T480,400q33,0 56.5,23.5T560,480q0,33 -23.5,56.5T480,560ZM480,320q-33,0 -56.5,-23.5T400,240q0,-33 23.5,-56.5T480,160q33,0 56.5,23.5T560,240q0,33 -23.5,56.5T480,320Z" android:fillColor="#1f1f1f"/> </vector>
src/com/android/settings/bluetooth/BluetoothDetailsConfigurableFragment.kt +6 −1 Original line number Diff line number Diff line Loading @@ -342,7 +342,12 @@ abstract class BluetoothDetailsConfigurableFragment : RestrictedDashboardFragmen summary = context.getString( R.string.bluetooth_device_more_settings_preference_summary ) icon = context.getDrawable(R.drawable.ic_chevron_right_24dp) icon = context.getDrawable( if (Flags.enableBluetoothSettingsExpressiveDesign()) { R.drawable.ic_bluetooth_more_vert } else { R.drawable.ic_chevron_right_24dp }) onPreferenceClickListener = Preference.OnPreferenceClickListener { logItemClick(prefKey, EVENT_CLICK_PRIMARY) SubSettingLauncher(context).setDestination( Loading