Snap for 13025002 from 8384d162d0 to 25Q2-release
Change-Id: I1a91328e1903d37aceff56aecdb0981667fa2a0a
This commit is contained in:
@@ -5515,12 +5515,12 @@
|
|||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:permission="android.permission.BLUETOOTH_PRIVILEGED" />
|
android:permission="android.permission.BLUETOOTH_PRIVILEGED" />
|
||||||
|
|
||||||
<!-- Once b/364771256 is fixed, add android:featureFlag="com.android.settings.flags.catalyst_service". -->
|
<!-- Service based on settingslib ipc to expose Preference Metadata and Get/Set functionality. -->
|
||||||
<!-- Permission is not yet finalized, use READ_BASIC_PHONE_STATE temporarily. -->
|
|
||||||
<service
|
<service
|
||||||
android:name=".SettingsService"
|
android:name=".SettingsService"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:permission="android.permission.READ_BASIC_PHONE_STATE">
|
android:featureFlag="com.android.settings.flags.catalyst_service"
|
||||||
|
android:permission="android.permission.READ_SYSTEM_PREFERENCES">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="com.android.settingslib.PREFERENCE_SERVICE" />
|
<action android:name="com.android.settingslib.PREFERENCE_SERVICE" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|||||||
@@ -16,5 +16,5 @@
|
|||||||
|
|
||||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:color="?android:attr/colorControlHighlight">
|
android:color="?android:attr/colorControlHighlight">
|
||||||
<item android:drawable="@color/search_bar_background"/>
|
<item android:drawable="@color/settingslib_materialColorSurfaceContainerLowest"/>
|
||||||
</ripple>
|
</ripple>
|
||||||
|
|||||||
@@ -45,8 +45,8 @@
|
|||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/qrcode_view"
|
android:id="@+id/qrcode_view"
|
||||||
android:layout_width="@dimen/qrcode_size"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="@dimen/qrcode_size"
|
android:layout_height="wrap_content"
|
||||||
android:contentDescription="@string/qr_code_content_description"
|
android:contentDescription="@string/qr_code_content_description"
|
||||||
android:focusable="true" />
|
android:focusable="true" />
|
||||||
|
|
||||||
|
|||||||
@@ -38,11 +38,11 @@
|
|||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/qrcode_view"
|
android:id="@+id/qrcode_view"
|
||||||
android:layout_width="@dimen/qrcode_size"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="@dimen/qrcode_size"
|
android:layout_height="wrap_content"
|
||||||
android:contentDescription="@string/qr_code_content_description"
|
android:contentDescription="@string/qr_code_content_description"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:paddingTop="70dp"/>
|
android:layout_marginTop="70dp"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/password"
|
android:id="@+id/password"
|
||||||
|
|||||||
@@ -47,6 +47,15 @@
|
|||||||
android:paddingBottom="24dp"
|
android:paddingBottom="24dp"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/description_text_2"
|
||||||
|
style="@style/DeviceAudioSharingText"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:paddingBottom="24dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
android:id="@+id/device_btn_list"
|
android:id="@+id/device_btn_list"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -88,6 +88,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
|
android:contentDescription="@string/input_setting_keys_custom_title"
|
||||||
android:background="@null"/>
|
android:background="@null"/>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/input_setting_keys_custom_value_option"
|
android:id="@+id/input_setting_keys_custom_value_option"
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="text"
|
android:inputType="text"
|
||||||
android:paddingTop="@dimen/sim_label_padding"
|
android:paddingTop="@dimen/sim_label_padding"
|
||||||
android:maxLength="50"
|
android:maxLength="@integer/sim_label_max_length"
|
||||||
android:singleLine="true"/>
|
android:singleLine="true"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
android:id="@+id/text"
|
android:id="@+id/text"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="24dp"
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
||||||
android:layout_marginTop="8dp"
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
||||||
android:textAlignment="viewStart"
|
android:textAlignment="viewStart"
|
||||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||||
android:textColor="?android:attr/textColorPrimary" />
|
android:textColor="?android:attr/textColorPrimary" />
|
||||||
@@ -19,7 +19,6 @@
|
|||||||
<color name="homepage_accessibility_background">#783BE5</color>
|
<color name="homepage_accessibility_background">#783BE5</color>
|
||||||
<color name="homepage_support_background">#3F5FBD</color>
|
<color name="homepage_support_background">#3F5FBD</color>
|
||||||
<color name="contextual_card_background">@*android:color/material_grey_900</color>
|
<color name="contextual_card_background">@*android:color/material_grey_900</color>
|
||||||
<color name="search_bar_background">@androidprv:color/materialColorSurfaceBright</color>
|
|
||||||
<color name="notification_importance_button_unselected">#5F6368</color>
|
<color name="notification_importance_button_unselected">#5F6368</color>
|
||||||
|
|
||||||
<!-- Palette list preference colors. -->
|
<!-- Palette list preference colors. -->
|
||||||
|
|||||||
@@ -93,9 +93,6 @@
|
|||||||
<!-- launcher icon color -->
|
<!-- launcher icon color -->
|
||||||
<color name="icon_launcher_setting_color">@*android:color/accent_device_default_light</color>
|
<color name="icon_launcher_setting_color">@*android:color/accent_device_default_light</color>
|
||||||
|
|
||||||
<!-- Search bar background color -->
|
|
||||||
<color name="search_bar_background">@androidprv:color/materialColorSurfaceBright</color>
|
|
||||||
|
|
||||||
<color name="face_enroll_icon_color">#42a5f5</color> <!-- Blue 400 -->
|
<color name="face_enroll_icon_color">#42a5f5</color> <!-- Blue 400 -->
|
||||||
|
|
||||||
<color name="back_gesture_indicator">#4182ef</color>
|
<color name="back_gesture_indicator">#4182ef</color>
|
||||||
|
|||||||
@@ -529,6 +529,7 @@
|
|||||||
<dimen name="contrast_button_horizontal_spacing">16dp</dimen>
|
<dimen name="contrast_button_horizontal_spacing">16dp</dimen>
|
||||||
|
|
||||||
<dimen name="audio_streams_qrcode_size">264dp</dimen>
|
<dimen name="audio_streams_qrcode_size">264dp</dimen>
|
||||||
|
<dimen name="audio_streams_qrcode_margin">1.8dp</dimen>
|
||||||
<dimen name="audio_streams_qrcode_preview_size">300dp</dimen>
|
<dimen name="audio_streams_qrcode_preview_size">300dp</dimen>
|
||||||
<dimen name="audio_streams_qrcode_preview_radius">30dp</dimen>
|
<dimen name="audio_streams_qrcode_preview_radius">30dp</dimen>
|
||||||
<dimen name="audio_streams_qrcode_scanner_fragment_padding">16dp</dimen>
|
<dimen name="audio_streams_qrcode_scanner_fragment_padding">16dp</dimen>
|
||||||
|
|||||||
@@ -42,4 +42,6 @@
|
|||||||
<integer name="pointer_scale_seek_bar_end">3</integer>
|
<integer name="pointer_scale_seek_bar_end">3</integer>
|
||||||
|
|
||||||
<integer name="max_integer">2147483647</integer>
|
<integer name="max_integer">2147483647</integer>
|
||||||
|
|
||||||
|
<integer name="sim_label_max_length">50</integer>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -965,6 +965,8 @@
|
|||||||
<string name="security_settings_fingerprint">Fingerprint</string>
|
<string name="security_settings_fingerprint">Fingerprint</string>
|
||||||
<!-- Title shown for a category shown for fingerprint settings page. [CHAR LIMIT=22] -->
|
<!-- Title shown for a category shown for fingerprint settings page. [CHAR LIMIT=22] -->
|
||||||
<string name="security_settings_fingerprint_title">Fingerprints</string>
|
<string name="security_settings_fingerprint_title">Fingerprints</string>
|
||||||
|
<!-- Description shown for fingerprint settings page. [CHAR LIMIT=22] -->
|
||||||
|
<string name="security_settings_fingerprint_description"></string>
|
||||||
<!-- Fingerprint category title - fingerprint options for unlocking the device. [CHAR LIMIT=60] -->
|
<!-- Fingerprint category title - fingerprint options for unlocking the device. [CHAR LIMIT=60] -->
|
||||||
<string name="security_settings_category_use_fingerprint">Use fingerprint to</string>
|
<string name="security_settings_category_use_fingerprint">Use fingerprint to</string>
|
||||||
<!-- Title shown for menu item that launches fingerprint settings or enrollment [CHAR LIMIT=22] -->
|
<!-- Title shown for menu item that launches fingerprint settings or enrollment [CHAR LIMIT=22] -->
|
||||||
@@ -4711,6 +4713,11 @@
|
|||||||
<string name="input_setting_keys_custom_title">Custom</string>
|
<string name="input_setting_keys_custom_title">Custom</string>
|
||||||
<!-- Option subtitle for the input setting keys threshold dialog for custom value. [CHAR LIMIT=35] -->
|
<!-- Option subtitle for the input setting keys threshold dialog for custom value. [CHAR LIMIT=35] -->
|
||||||
<string name="input_setting_keys_custom_value">custom value</string>
|
<string name="input_setting_keys_custom_value">custom value</string>
|
||||||
|
<!-- Content description for the bounce key threshold dialog for custom value seekbar. [CHAR LIMIT=35] -->
|
||||||
|
<string name="input_setting_bounce_keys_seekbar_desc">Bounce key threshold time</string>
|
||||||
|
<!-- Content description for the slow key threshold dialog for custom value seekbar. [CHAR LIMIT=35] -->
|
||||||
|
<string name="input_setting_slow_keys_seekbar_desc">Slow key threshold time</string>
|
||||||
|
|
||||||
|
|
||||||
<!-- Title for the 'Slow keys' preference switch. [CHAR LIMIT=35] -->
|
<!-- Title for the 'Slow keys' preference switch. [CHAR LIMIT=35] -->
|
||||||
<string name="slow_keys">Slow keys</string>
|
<string name="slow_keys">Slow keys</string>
|
||||||
@@ -4746,17 +4753,17 @@
|
|||||||
<!-- page title for Mouse key main page. [CHAR LIMIT=NONE] -->
|
<!-- page title for Mouse key main page. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_key_main_page_title">Mouse keys for <xliff:g id="keyboard name" example="my keyboard">%s</xliff:g></string>
|
<string name="mouse_key_main_page_title">Mouse keys for <xliff:g id="keyboard name" example="my keyboard">%s</xliff:g></string>
|
||||||
<!-- Summary text for Mouse keys directional image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys directional image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_directional_summary">Use the \“<xliff:g id="directional_label" example="7,8,9,u,o,j,k,l">%s</xliff:g>\” keys to move the mouse pointer</string>
|
<string name="mouse_keys_directional_summary">Use the \"<xliff:g id="directional_label" example="7,8,9,u,o,j,k,l">%s</xliff:g>\" keys to move the mouse pointer</string>
|
||||||
<!-- Summary text for Mouse keys click image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys click image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_click_summary">Use the \“<xliff:g id="click_label" example="i">%s</xliff:g>\” key to click the primary mouse button</string>
|
<string name="mouse_keys_click_summary">Use the \"<xliff:g id="click_label" example="i">%s</xliff:g>\" key to click the primary mouse button</string>
|
||||||
<!-- Summary text for Mouse keys press hold image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys press hold image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_press_hold_summary">Use the \“<xliff:g id="press_hold_label" example="m">%s</xliff:g>\” key to press & hold the primary mouse button</string>
|
<string name="mouse_keys_press_hold_summary">Use the \"<xliff:g id="press_hold_label" example="m">%s</xliff:g>\" key to press & hold the primary mouse button</string>
|
||||||
<!-- Summary text for Mouse keys release image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys release image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_release_summary">Use the \“<xliff:g id="release_label" example=",">%s</xliff:g>\” key to release the primary mouse button</string>
|
<string name="mouse_keys_release_summary">Use the \"<xliff:g id="release_label" example=",">%s</xliff:g>\" key to release the primary mouse button</string>
|
||||||
<!-- Summary text for Mouse keys toggle scroll image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys toggle scroll image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_toggle_scroll_summary">Use the \“<xliff:g id="release_label_1" example=".">%1$s</xliff:g>\” key to toggle scroll mode. This will make the \“<xliff:g id="release_label_2" example="8, k, o, u">%2$s</xliff:g>\” keys scroll the view top, down, left or right</string>
|
<string name="mouse_keys_toggle_scroll_summary">Use the \"<xliff:g id="release_label_1" example=".">%1$s</xliff:g>\" key to toggle scroll mode. This will make the \"<xliff:g id="release_label_2" example="8, k, o, u">%2$s</xliff:g>\" keys scroll the view top, down, left or right</string>
|
||||||
<!-- Summary text for Mouse keys click secondary button image. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for Mouse keys click secondary button image. [CHAR LIMIT=NONE] -->
|
||||||
<string name="mouse_keys_release2_summary">Use the \“<xliff:g id="release_2_label" example="/">%s</xliff:g>\” key to click the secondary mouse button</string>
|
<string name="mouse_keys_release2_summary">Use the \"<xliff:g id="release_2_label" example="/">%s</xliff:g>\" key to click the secondary mouse button</string>
|
||||||
|
|
||||||
<!-- Title for the button to trigger the 'keyboard shortcuts helper' dialog. [CHAR LIMIT=35] -->
|
<!-- Title for the button to trigger the 'keyboard shortcuts helper' dialog. [CHAR LIMIT=35] -->
|
||||||
<string name="keyboard_shortcuts_helper">View keyboard shortcuts</string>
|
<string name="keyboard_shortcuts_helper">View keyboard shortcuts</string>
|
||||||
@@ -4776,7 +4783,7 @@
|
|||||||
<!-- Title for the button to trigger the 'mouse settings' page if connect with a mouse. [CHAR LIMIT=35] -->
|
<!-- Title for the button to trigger the 'mouse settings' page if connect with a mouse. [CHAR LIMIT=35] -->
|
||||||
<string name="mouse_settings">Mouse</string>
|
<string name="mouse_settings">Mouse</string>
|
||||||
<!-- Summary text for mouse setting page. [CHAR LIMIT=35] -->
|
<!-- Summary text for mouse setting page. [CHAR LIMIT=35] -->
|
||||||
<string name="mouse_settings_summary">Pointer speed, swap buttons, button customisation</string>
|
<string name="mouse_settings_summary">Pointer speed, swap buttons, button customization</string>
|
||||||
<!-- Summary text for the 'trackpad settings' page. [CHAR LIMIT=100] -->
|
<!-- Summary text for the 'trackpad settings' page. [CHAR LIMIT=100] -->
|
||||||
<string name="trackpad_settings_summary">Pointer speed, gestures</string>
|
<string name="trackpad_settings_summary">Pointer speed, gestures</string>
|
||||||
|
|
||||||
@@ -4801,7 +4808,7 @@
|
|||||||
<!-- Title text for 'Pointer speed'. [CHAR LIMIT=35] -->
|
<!-- Title text for 'Pointer speed'. [CHAR LIMIT=35] -->
|
||||||
<string name="trackpad_pointer_speed">Cursor speed</string>
|
<string name="trackpad_pointer_speed">Cursor speed</string>
|
||||||
<!-- Title text for 'Three finger tap' touchpad preference. This preference allows the user to select an action that will trigger when they tap three fingers on a touchpad. [CHAR LIMIT=60] -->
|
<!-- Title text for 'Three finger tap' touchpad preference. This preference allows the user to select an action that will trigger when they tap three fingers on a touchpad. [CHAR LIMIT=60] -->
|
||||||
<string name="three_finger_tap_preference_title">Customise 3-finger tap</string>
|
<string name="three_finger_tap_preference_title">Customize 3-finger tap</string>
|
||||||
<!-- Title for the 'Touchpad acceleration' preference switch, which dynamically adjusts cursor movement based on speed. [CHAR LIMIT=60] -->
|
<!-- Title for the 'Touchpad acceleration' preference switch, which dynamically adjusts cursor movement based on speed. [CHAR LIMIT=60] -->
|
||||||
<string name="touchpad_acceleration_title">Touchpad acceleration</string>
|
<string name="touchpad_acceleration_title">Touchpad acceleration</string>
|
||||||
<!-- Summary text for the 'Touchpad acceleration' preference switch indicating to users that when this switch is enabled, faster movements with your fingers will move the cursor farther. [CHAR LIMIT=NONE] -->
|
<!-- Summary text for the 'Touchpad acceleration' preference switch indicating to users that when this switch is enabled, faster movements with your fingers will move the cursor farther. [CHAR LIMIT=NONE] -->
|
||||||
@@ -13927,6 +13934,10 @@
|
|||||||
<string name="audio_sharing_close_button_label">Close</string>
|
<string name="audio_sharing_close_button_label">Close</string>
|
||||||
<!-- Content for audio sharing share dialog with no device, ask users to connect device [CHAR LIMIT=none]-->
|
<!-- Content for audio sharing share dialog with no device, ask users to connect device [CHAR LIMIT=none]-->
|
||||||
<string name="audio_sharing_dialog_connect_device_content">Connect another pair of compatible headphones, or share your stream\'s name and password with the other person</string>
|
<string name="audio_sharing_dialog_connect_device_content">Connect another pair of compatible headphones, or share your stream\'s name and password with the other person</string>
|
||||||
|
<!-- Content for audio sharing share dialog with no device, ask users to scan qr code [CHAR LIMIT=none]-->
|
||||||
|
<string name="audio_sharing_dialog_qr_code_content">Let others scan this code and listen to your audio\n\nStream name: <xliff:g example="Pixel 8" id="stream_name">%1$s</xliff:g>\nPassword: <xliff:g example="123456" id="password">%2$s</xliff:g></string>
|
||||||
|
<!-- Content for audio sharing share dialog with no device, ask users to pair new device [CHAR LIMIT=none]-->
|
||||||
|
<string name="audio_sharing_dialog_pair_new_device_content">or pair another set of compatible headphones</string>
|
||||||
<!-- Content for audio sharing share dialog with no device, ask users to pair device [CHAR LIMIT=none]-->
|
<!-- Content for audio sharing share dialog with no device, ask users to pair device [CHAR LIMIT=none]-->
|
||||||
<string name="audio_sharing_dialog_pair_device_content">Pair another set of compatible headphones, or share your audio stream QR code with the other person</string>
|
<string name="audio_sharing_dialog_pair_device_content">Pair another set of compatible headphones, or share your audio stream QR code with the other person</string>
|
||||||
<!-- Text for sharing audio sharing state [CHAR LIMIT=none]-->
|
<!-- Text for sharing audio sharing state [CHAR LIMIT=none]-->
|
||||||
@@ -14035,7 +14046,7 @@
|
|||||||
<!-- The preference summary when add source succeed [CHAR LIMIT=NONE] -->
|
<!-- The preference summary when add source succeed [CHAR LIMIT=NONE] -->
|
||||||
<string name="audio_streams_listening_now">Listening now</string>
|
<string name="audio_streams_listening_now">Listening now</string>
|
||||||
<!-- The preference summary when source is present on sinks [CHAR LIMIT=NONE] -->
|
<!-- The preference summary when source is present on sinks [CHAR LIMIT=NONE] -->
|
||||||
<string name="audio_streams_present_now">Paused by host</string>
|
<string name="audio_streams_present_now">Stream paused</string>
|
||||||
<!-- Le audio streams service notification leave broadcast text [CHAR LIMIT=NONE] -->
|
<!-- Le audio streams service notification leave broadcast text [CHAR LIMIT=NONE] -->
|
||||||
<string name="audio_streams_media_service_notification_leave_broadcast_text">Stop listening</string>
|
<string name="audio_streams_media_service_notification_leave_broadcast_text">Stop listening</string>
|
||||||
<!-- Le audio streams no le device dialog title [CHAR LIMIT=NONE] -->
|
<!-- Le audio streams no le device dialog title [CHAR LIMIT=NONE] -->
|
||||||
@@ -14090,7 +14101,7 @@
|
|||||||
<!-- Text for "device only" preference label in Contacts Storage Settings [CHAR LIMIT=34] -->
|
<!-- Text for "device only" preference label in Contacts Storage Settings [CHAR LIMIT=34] -->
|
||||||
<string name="contacts_storage_device_only_preference_label">Device only</string>
|
<string name="contacts_storage_device_only_preference_label">Device only</string>
|
||||||
<!-- Text for "device only" preference summary in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
<!-- Text for "device only" preference summary in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
||||||
<string name="contacts_storage_device_only_preference_summary">New contacts won\'t be synced with an account</string>
|
<string name="contacts_storage_device_only_preference_summary">Contacts may not sync or be available on your other devices</string>
|
||||||
<!-- Text for explaining the selection in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
<!-- Text for explaining the selection in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
||||||
<string name="contacts_storage_selection_message">Contacts will be saved to your device and synced to your account by default</string>
|
<string name="contacts_storage_selection_message">Contacts will be saved to your device and synced to your account by default</string>
|
||||||
<!-- Text for error toast when there's error setting the default account in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
<!-- Text for error toast when there's error setting the default account in Contacts Storage Settings [CHAR LIMIT=NONE] -->
|
||||||
|
|||||||
@@ -19,6 +19,11 @@
|
|||||||
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
||||||
android:title="@string/security_settings_fingerprint_preference_title">
|
android:title="@string/security_settings_fingerprint_preference_title">
|
||||||
|
|
||||||
|
<com.android.settingslib.widget.TopIntroPreference
|
||||||
|
android:key="security_settings_fingerprint_description"
|
||||||
|
settings:searchable="false"
|
||||||
|
settings:isPreferenceVisible="false" />
|
||||||
|
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:key="biometric_settings_use_fingerprint_to"
|
android:key="biometric_settings_use_fingerprint_to"
|
||||||
android:title="@string/security_settings_category_use_fingerprint"
|
android:title="@string/security_settings_category_use_fingerprint"
|
||||||
|
|||||||
@@ -16,21 +16,19 @@
|
|||||||
|
|
||||||
package com.android.settings
|
package com.android.settings
|
||||||
|
|
||||||
import android.content.Intent
|
import android.Manifest.permission.WRITE_SYSTEM_PREFERENCES
|
||||||
import com.android.settings.flags.Flags
|
import android.app.AppOpsManager.OP_WRITE_SYSTEM_PREFERENCES
|
||||||
import com.android.settings.metrics.SettingsRemoteOpMetricsLogger
|
import com.android.settings.metrics.SettingsRemoteOpMetricsLogger
|
||||||
import com.android.settingslib.ipc.ApiPermissionChecker
|
import com.android.settingslib.ipc.ApiPermissionChecker
|
||||||
|
import com.android.settingslib.ipc.AppOpApiPermissionChecker
|
||||||
import com.android.settingslib.service.PreferenceService
|
import com.android.settingslib.service.PreferenceService
|
||||||
|
|
||||||
/** Service to expose settings APIs. */
|
/** Service to expose settings APIs. */
|
||||||
class SettingsService :
|
class SettingsService :
|
||||||
PreferenceService(
|
PreferenceService(
|
||||||
graphPermissionChecker = ApiPermissionChecker.alwaysAllow(),
|
graphPermissionChecker = ApiPermissionChecker.alwaysAllow(),
|
||||||
setterPermissionChecker = ApiPermissionChecker.alwaysAllow(),
|
setterPermissionChecker =
|
||||||
|
AppOpApiPermissionChecker(OP_WRITE_SYSTEM_PREFERENCES, WRITE_SYSTEM_PREFERENCES),
|
||||||
getterPermissionChecker = ApiPermissionChecker.alwaysAllow(),
|
getterPermissionChecker = ApiPermissionChecker.alwaysAllow(),
|
||||||
metricsLogger = SettingsRemoteOpMetricsLogger(),
|
metricsLogger = SettingsRemoteOpMetricsLogger(),
|
||||||
) {
|
)
|
||||||
|
|
||||||
override fun onBind(intent: Intent) =
|
|
||||||
if (Flags.catalystService()) super.onBind(intent) else null
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -232,7 +232,7 @@ public class ContactsStorageSettings extends DashboardFragment
|
|||||||
getPrefContext());
|
getPrefContext());
|
||||||
preference.setTitle(R.string.sim_card_label);
|
preference.setTitle(R.string.sim_card_label);
|
||||||
preference.setIcon(R.drawable.ic_sim_card);
|
preference.setIcon(R.drawable.ic_sim_card);
|
||||||
preference.setSummary(R.string.sim_card_label);
|
preference.setSummary(R.string.contacts_storage_device_only_preference_summary);
|
||||||
preference.setKey(preferenceKey);
|
preference.setKey(preferenceKey);
|
||||||
preference.setOnClickListener(this);
|
preference.setOnClickListener(this);
|
||||||
mAccountMap.put(preferenceKey, currentDefaultAccountAndState);
|
mAccountMap.put(preferenceKey, currentDefaultAccountAndState);
|
||||||
|
|||||||
@@ -71,4 +71,13 @@ public interface FingerprintFeatureProvider {
|
|||||||
) {
|
) {
|
||||||
return new FingerprintExtPreferencesProvider();
|
return new FingerprintExtPreferencesProvider();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the feature provider for FingerprintSettings page
|
||||||
|
* @return the provider
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default FingerprintSettingsFeatureProvider getFingerprintSettingsFeatureProvider() {
|
||||||
|
return FingerprintSettingsFeatureProvider.getInstance();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ import static com.android.settings.Utils.isPrivateProfile;
|
|||||||
import static com.android.settings.biometrics.BiometricEnrollBase.BIOMETRIC_AUTH_REQUEST;
|
import static com.android.settings.biometrics.BiometricEnrollBase.BIOMETRIC_AUTH_REQUEST;
|
||||||
import static com.android.settings.biometrics.BiometricEnrollBase.EXTRA_FROM_SETTINGS_SUMMARY;
|
import static com.android.settings.biometrics.BiometricEnrollBase.EXTRA_FROM_SETTINGS_SUMMARY;
|
||||||
import static com.android.settings.biometrics.BiometricEnrollBase.EXTRA_KEY_CHALLENGE;
|
import static com.android.settings.biometrics.BiometricEnrollBase.EXTRA_KEY_CHALLENGE;
|
||||||
|
import static com.android.settings.core.BasePreferenceController.AVAILABLE;
|
||||||
|
import static com.android.settings.core.BasePreferenceController.CONDITIONALLY_UNAVAILABLE;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
@@ -37,6 +39,7 @@ import android.app.settings.SettingsEnums;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.res.ResourceId;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.hardware.fingerprint.Fingerprint;
|
import android.hardware.fingerprint.Fingerprint;
|
||||||
import android.hardware.fingerprint.FingerprintManager;
|
import android.hardware.fingerprint.FingerprintManager;
|
||||||
@@ -276,6 +279,8 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
"security_settings_fingerprint_unlock_category";
|
"security_settings_fingerprint_unlock_category";
|
||||||
private static final String KEY_FINGERPRINT_UNLOCK_FOOTER =
|
private static final String KEY_FINGERPRINT_UNLOCK_FOOTER =
|
||||||
"security_settings_fingerprint_footer";
|
"security_settings_fingerprint_footer";
|
||||||
|
private static final String KEY_FINGERPRINT_DESCRIPTION =
|
||||||
|
"security_settings_fingerprint_description";
|
||||||
private static final String KEY_BIOMETRICS_AUTHENTICATION_REQUESTED =
|
private static final String KEY_BIOMETRICS_AUTHENTICATION_REQUESTED =
|
||||||
"biometrics_authentication_requested";
|
"biometrics_authentication_requested";
|
||||||
private static final String KEY_BIOMETRICS_USE_FINGERPRINT_TO_CATEGORY =
|
private static final String KEY_BIOMETRICS_USE_FINGERPRINT_TO_CATEGORY =
|
||||||
@@ -327,6 +332,8 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
private boolean mIsEnrolling;
|
private boolean mIsEnrolling;
|
||||||
/** SaveInstance key if we are waiting activity result from a extension preference */
|
/** SaveInstance key if we are waiting activity result from a extension preference */
|
||||||
@NonNull private String mLaunchedExtPrefKey = "";
|
@NonNull private String mLaunchedExtPrefKey = "";
|
||||||
|
/** key list for changing visibility */
|
||||||
|
@NonNull private final ArrayList<String> mExtPrefKeys = new ArrayList<>();
|
||||||
|
|
||||||
private long mChallenge;
|
private long mChallenge;
|
||||||
|
|
||||||
@@ -469,6 +476,7 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
if (preference instanceof PrimarySwitchIntentPreference) {
|
if (preference instanceof PrimarySwitchIntentPreference) {
|
||||||
preference.setOnPreferenceClickListener(this::onExtIntentPreferenceClick);
|
preference.setOnPreferenceClickListener(this::onExtIntentPreferenceClick);
|
||||||
}
|
}
|
||||||
|
mExtPrefKeys.add(preference.getKey());
|
||||||
mFingerprintUnlockCategory.addPreference(preference);
|
mFingerprintUnlockCategory.addPreference(preference);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -648,13 +656,16 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
mFooterColumns.add(column2);
|
mFooterColumns.add(column2);
|
||||||
} else {
|
} else {
|
||||||
final FooterColumn column = new FooterColumn();
|
final FooterColumn column = new FooterColumn();
|
||||||
|
final FingerprintSettingsFeatureProvider featureProvider =
|
||||||
|
FeatureFactory.getFeatureFactory().getFingerprintFeatureProvider()
|
||||||
|
.getFingerprintSettingsFeatureProvider();
|
||||||
column.mTitle = getString(isPrivateProfile()
|
column.mTitle = getString(isPrivateProfile()
|
||||||
? R.string.private_space_fingerprint_enroll_introduction_message
|
? R.string.private_space_fingerprint_enroll_introduction_message
|
||||||
: R.string.security_settings_fingerprint_enroll_introduction_v3_message,
|
: R.string.security_settings_fingerprint_enroll_introduction_v3_message,
|
||||||
DeviceHelper.getDeviceName(getActivity()));
|
DeviceHelper.getDeviceName(getActivity()));
|
||||||
column.mLearnMoreClickListener = learnMoreClickListener;
|
column.mLearnMoreClickListener = learnMoreClickListener;
|
||||||
column.mLearnMoreOverrideText = getText(
|
column.mLearnMoreOverrideText = getText(
|
||||||
R.string.security_settings_fingerprint_settings_footer_learn_more);
|
featureProvider.getSettingPageFooterLearnMoreDescription());
|
||||||
mFooterColumns.add(column);
|
mFooterColumns.add(column);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -735,6 +746,14 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
scrollToPreference(fpPrefKey);
|
scrollToPreference(fpPrefKey);
|
||||||
addFingerprintUnlockCategory();
|
addFingerprintUnlockCategory();
|
||||||
}
|
}
|
||||||
|
final int descriptionRes = FeatureFactory.getFeatureFactory()
|
||||||
|
.getFingerprintFeatureProvider().getFingerprintSettingsFeatureProvider()
|
||||||
|
.getSettingPageDescription();
|
||||||
|
if (ResourceId.isValid(descriptionRes)) {
|
||||||
|
final Preference preference = findPreference(KEY_FINGERPRINT_DESCRIPTION);
|
||||||
|
preference.setTitle(descriptionRes);
|
||||||
|
preference.setVisible(true);
|
||||||
|
}
|
||||||
createFooterPreference(root);
|
createFooterPreference(root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -748,8 +767,7 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
R.string.security_settings_fingerprint_title));
|
R.string.security_settings_fingerprint_title));
|
||||||
}
|
}
|
||||||
|
|
||||||
String keyToReturn = mIsExpressiveThemeStyle
|
String keyToReturn = getAddFingerprintPreferenceKey();
|
||||||
? KEY_FINGERPRINT_ADD_EXPRESSIVE : KEY_FINGERPRINT_ADD;
|
|
||||||
final List<Fingerprint> items = mFingerprintManager.getEnrolledFingerprints(mUserId);
|
final List<Fingerprint> items = mFingerprintManager.getEnrolledFingerprints(mUserId);
|
||||||
final int fingerprintCount = items.size();
|
final int fingerprintCount = items.size();
|
||||||
for (int i = 0; i < fingerprintCount; i++) {
|
for (int i = 0; i < fingerprintCount; i++) {
|
||||||
@@ -785,8 +803,7 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
mFingerprintsEnrolledCategory.addPreference(pref);
|
mFingerprintsEnrolledCategory.addPreference(pref);
|
||||||
pref.setOnPreferenceChangeListener(this);
|
pref.setOnPreferenceChangeListener(this);
|
||||||
}
|
}
|
||||||
mAddFingerprintPreference = findPreference(mIsExpressiveThemeStyle
|
mAddFingerprintPreference = findPreference(getAddFingerprintPreferenceKey());
|
||||||
? KEY_FINGERPRINT_ADD_EXPRESSIVE : KEY_FINGERPRINT_ADD);
|
|
||||||
setupAddFingerprintPreference();
|
setupAddFingerprintPreference();
|
||||||
return keyToReturn;
|
return keyToReturn;
|
||||||
}
|
}
|
||||||
@@ -812,8 +829,17 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
updateAddPreference();
|
updateAddPreference();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lambda function for setCategoryHasChildrenSupplier
|
||||||
|
*/
|
||||||
|
private boolean fingerprintUnlockCategoryHasChild() {
|
||||||
|
return mFingerprintUnlockCategory.getPreferenceCount() > 0;
|
||||||
|
}
|
||||||
|
|
||||||
private void addFingerprintUnlockCategory() {
|
private void addFingerprintUnlockCategory() {
|
||||||
mFingerprintUnlockCategory = findPreference(KEY_FINGERPRINT_UNLOCK_CATEGORY);
|
mFingerprintUnlockCategory = findPreference(KEY_FINGERPRINT_UNLOCK_CATEGORY);
|
||||||
|
mFingerprintUnlockCategoryPreferenceController.setCategoryHasChildrenSupplier(
|
||||||
|
this::fingerprintUnlockCategoryHasChild);
|
||||||
if (isSfps()) {
|
if (isSfps()) {
|
||||||
// For both SFPS "screen on to auth" and "rest to unlock"
|
// For both SFPS "screen on to auth" and "rest to unlock"
|
||||||
final Preference restToUnlockPreference = FeatureFactory.getFeatureFactory()
|
final Preference restToUnlockPreference = FeatureFactory.getFeatureFactory()
|
||||||
@@ -839,18 +865,39 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void updateFingerprintUnlockCategoryVisibility() {
|
private void updateFingerprintUnlockCategoryVisibility() {
|
||||||
final boolean fingerprintUnlockCategoryAvailable =
|
final int categoryStatus =
|
||||||
mFingerprintUnlockCategoryPreferenceController.isAvailable();
|
mFingerprintUnlockCategoryPreferenceController.getAvailabilityStatus();
|
||||||
if (mFingerprintUnlockCategory.isVisible() != fingerprintUnlockCategoryAvailable) {
|
updatePreferenceVisibility(categoryStatus, mFingerprintUnlockCategory);
|
||||||
mFingerprintUnlockCategory.setVisible(fingerprintUnlockCategoryAvailable);
|
|
||||||
}
|
|
||||||
if (mRequireScreenOnToAuthPreferenceController != null) {
|
if (mRequireScreenOnToAuthPreferenceController != null) {
|
||||||
mRequireScreenOnToAuthPreference.setVisible(
|
final int status =
|
||||||
mRequireScreenOnToAuthPreferenceController.isAvailable());
|
mRequireScreenOnToAuthPreferenceController.getAvailabilityStatus();
|
||||||
|
updatePreferenceVisibility(status, mRequireScreenOnToAuthPreference);
|
||||||
}
|
}
|
||||||
if (mScreenOffUnlockUdfpsPreferenceController != null) {
|
if (mScreenOffUnlockUdfpsPreferenceController != null) {
|
||||||
mScreenOffUnlockUdfpsPreference.setVisible(
|
final int status =
|
||||||
mScreenOffUnlockUdfpsPreferenceController.isAvailable());
|
mScreenOffUnlockUdfpsPreferenceController.getAvailabilityStatus();
|
||||||
|
updatePreferenceVisibility(status, mScreenOffUnlockUdfpsPreference);
|
||||||
|
}
|
||||||
|
if (!mExtPrefKeys.isEmpty()) {
|
||||||
|
for (String key: mExtPrefKeys) {
|
||||||
|
Preference preference = mFingerprintUnlockCategory.findPreference(key);
|
||||||
|
if (preference != null) {
|
||||||
|
updatePreferenceVisibility(categoryStatus, preference);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updatePreferenceVisibility(int availabilityStatus, Preference preference) {
|
||||||
|
if (availabilityStatus == AVAILABLE) {
|
||||||
|
preference.setVisible(true);
|
||||||
|
preference.setEnabled(true);
|
||||||
|
} else if (availabilityStatus == CONDITIONALLY_UNAVAILABLE) {
|
||||||
|
preference.setVisible(true);
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else {
|
||||||
|
preference.setVisible(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -898,8 +945,29 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
.setOnPreferenceChangeListener(fingerprintAppController);
|
.setOnPreferenceChangeListener(fingerprintAppController);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void updateUseFingerprintToEnableStatus() {
|
||||||
|
final PreferenceCategory category =
|
||||||
|
findPreference(KEY_BIOMETRICS_USE_FINGERPRINT_TO_CATEGORY);
|
||||||
|
if (!category.isVisible()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final boolean hasFingerprintEnrolled =
|
||||||
|
mFingerprintManager.getEnrolledFingerprints(mUserId).size() > 0;
|
||||||
|
|
||||||
|
final FingerprintSettingsKeyguardUnlockPreferenceController fpUnlockController =
|
||||||
|
use(FingerprintSettingsKeyguardUnlockPreferenceController.class);
|
||||||
|
findPreference(fpUnlockController.getPreferenceKey())
|
||||||
|
.setEnabled(hasFingerprintEnrolled);
|
||||||
|
|
||||||
|
final FingerprintSettingsAppsPreferenceController fingerprintAppController =
|
||||||
|
use(FingerprintSettingsAppsPreferenceController.class);
|
||||||
|
findPreference(fingerprintAppController.getPreferenceKey())
|
||||||
|
.setEnabled(hasFingerprintEnrolled);
|
||||||
|
}
|
||||||
|
|
||||||
private void updatePreferencesAfterFingerprintRemoved() {
|
private void updatePreferencesAfterFingerprintRemoved() {
|
||||||
updateAddPreference();
|
updateAddPreference();
|
||||||
|
updateUseFingerprintToEnableStatus();
|
||||||
if (isSfps() || (screenOffUnlockUdfps() && isScreenOffUnlcokSupported())) {
|
if (isSfps() || (screenOffUnlockUdfps() && isScreenOffUnlcokSupported())) {
|
||||||
updateFingerprintUnlockCategoryVisibility();
|
updateFingerprintUnlockCategoryVisibility();
|
||||||
}
|
}
|
||||||
@@ -911,8 +979,7 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
return; // Activity went away
|
return; // Activity went away
|
||||||
}
|
}
|
||||||
|
|
||||||
mAddFingerprintPreference = findPreference(
|
mAddFingerprintPreference = findPreference(getAddFingerprintPreferenceKey());
|
||||||
mIsExpressiveThemeStyle ? KEY_FINGERPRINT_ADD_EXPRESSIVE : KEY_FINGERPRINT_ADD);
|
|
||||||
|
|
||||||
if (mAddFingerprintPreference == null) {
|
if (mAddFingerprintPreference == null) {
|
||||||
return; // b/275519315 Skip if updateAddPreference() invoke before addPreference()
|
return; // b/275519315 Skip if updateAddPreference() invoke before addPreference()
|
||||||
@@ -945,11 +1012,11 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
findPreference(KEY_FINGERPRINT_ADD_EXPRESSIVE);
|
findPreference(KEY_FINGERPRINT_ADD_EXPRESSIVE);
|
||||||
|
|
||||||
if (nonExpressiveBtnPreference != null) {
|
if (nonExpressiveBtnPreference != null) {
|
||||||
nonExpressiveBtnPreference.setVisible(!mIsExpressiveThemeStyle);
|
nonExpressiveBtnPreference.setVisible(!shouldShowExpressiveAddFingerprintPref());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (expressiveBtnPreference != null) {
|
if (expressiveBtnPreference != null) {
|
||||||
expressiveBtnPreference.setVisible(mIsExpressiveThemeStyle);
|
expressiveBtnPreference.setVisible(shouldShowExpressiveAddFingerprintPref());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1053,7 +1120,7 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceTreeClick(Preference pref) {
|
public boolean onPreferenceTreeClick(Preference pref) {
|
||||||
final String key = pref.getKey();
|
final String key = pref.getKey();
|
||||||
if (!mIsExpressiveThemeStyle && KEY_FINGERPRINT_ADD.equals(key)) {
|
if (KEY_FINGERPRINT_ADD.equals(key)) {
|
||||||
mIsEnrolling = true;
|
mIsEnrolling = true;
|
||||||
Intent intent = new Intent();
|
Intent intent = new Intent();
|
||||||
intent.setClassName(SETTINGS_PACKAGE_NAME,
|
intent.setClassName(SETTINGS_PACKAGE_NAME,
|
||||||
@@ -1451,6 +1518,16 @@ public class FingerprintSettings extends SubSettings {
|
|||||||
return Utils.isPrivateProfile(mUserId, getContext());
|
return Utils.isPrivateProfile(mUserId, getContext());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String getAddFingerprintPreferenceKey() {
|
||||||
|
return shouldShowExpressiveAddFingerprintPref()
|
||||||
|
? KEY_FINGERPRINT_ADD_EXPRESSIVE : KEY_FINGERPRINT_ADD;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean shouldShowExpressiveAddFingerprintPref() {
|
||||||
|
return Flags.biometricsOnboardingEducation() && mIsExpressiveThemeStyle
|
||||||
|
&& mFingerprintManager.hasEnrolledTemplates(mUserId);
|
||||||
|
}
|
||||||
|
|
||||||
public static class DeleteFingerprintDialog extends InstrumentedDialogFragment
|
public static class DeleteFingerprintDialog extends InstrumentedDialogFragment
|
||||||
implements DialogInterface.OnClickListener {
|
implements DialogInterface.OnClickListener {
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.hardware.fingerprint.FingerprintManager;
|
|||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.preference.Preference;
|
||||||
|
|
||||||
import com.android.settings.Utils;
|
import com.android.settings.Utils;
|
||||||
import com.android.settings.biometrics.activeunlock.ActiveUnlockStatusUtils;
|
import com.android.settings.biometrics.activeunlock.ActiveUnlockStatusUtils;
|
||||||
@@ -53,6 +54,20 @@ public class FingerprintSettingsAppsPreferenceController
|
|||||||
isChecked ? ON : OFF, getUserId());
|
isChecked ? ON : OFF, getUserId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateState(Preference preference) {
|
||||||
|
super.updateState(preference);
|
||||||
|
if (!FingerprintSettings.isFingerprintHardwareDetected(mContext)) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else if (!mFingerprintManager.hasEnrolledTemplates(getUserId())) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else if (getRestrictingAdmin() != null) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else {
|
||||||
|
preference.setEnabled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getAvailabilityStatus() {
|
public int getAvailabilityStatus() {
|
||||||
final ActiveUnlockStatusUtils activeUnlockStatusUtils =
|
final ActiveUnlockStatusUtils activeUnlockStatusUtils =
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.biometrics.fingerprint
|
||||||
|
|
||||||
|
import com.android.settings.R
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provide features for FingerprintSettings page.
|
||||||
|
*/
|
||||||
|
open class FingerprintSettingsFeatureProvider {
|
||||||
|
/**
|
||||||
|
* Get the description shown in the FingerprintSetting page.
|
||||||
|
*/
|
||||||
|
open fun getSettingPageDescription(): Int {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the learn more description shown in the footer of the FingerprintSetting page.
|
||||||
|
*/
|
||||||
|
open fun getSettingPageFooterLearnMoreDescription(): Int {
|
||||||
|
return R.string.security_settings_fingerprint_settings_footer_learn_more
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
val instance = FingerprintSettingsFeatureProvider()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -19,9 +19,11 @@ package com.android.settings.biometrics.fingerprint;
|
|||||||
import static android.provider.Settings.Secure.FINGERPRINT_KEYGUARD_ENABLED;
|
import static android.provider.Settings.Secure.FINGERPRINT_KEYGUARD_ENABLED;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.hardware.fingerprint.FingerprintManager;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.preference.Preference;
|
||||||
|
|
||||||
import com.android.settings.Utils;
|
import com.android.settings.Utils;
|
||||||
import com.android.settings.biometrics.activeunlock.ActiveUnlockStatusUtils;
|
import com.android.settings.biometrics.activeunlock.ActiveUnlockStatusUtils;
|
||||||
@@ -33,9 +35,12 @@ public class FingerprintSettingsKeyguardUnlockPreferenceController
|
|||||||
private static final int OFF = 0;
|
private static final int OFF = 0;
|
||||||
private static final int DEFAULT = ON;
|
private static final int DEFAULT = ON;
|
||||||
|
|
||||||
|
private FingerprintManager mFingerprintManager;
|
||||||
|
|
||||||
public FingerprintSettingsKeyguardUnlockPreferenceController(
|
public FingerprintSettingsKeyguardUnlockPreferenceController(
|
||||||
@NonNull Context context, @NonNull String key) {
|
@NonNull Context context, @NonNull String key) {
|
||||||
super(context, key);
|
super(context, key);
|
||||||
|
mFingerprintManager = Utils.getFingerprintManagerOrNull(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -50,6 +55,20 @@ public class FingerprintSettingsKeyguardUnlockPreferenceController
|
|||||||
FINGERPRINT_KEYGUARD_ENABLED, isChecked ? ON : OFF, getUserId());
|
FINGERPRINT_KEYGUARD_ENABLED, isChecked ? ON : OFF, getUserId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateState(Preference preference) {
|
||||||
|
super.updateState(preference);
|
||||||
|
if (!FingerprintSettings.isFingerprintHardwareDetected(mContext)) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else if (!mFingerprintManager.hasEnrolledTemplates(getUserId())) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else if (getRestrictingAdmin() != null) {
|
||||||
|
preference.setEnabled(false);
|
||||||
|
} else {
|
||||||
|
preference.setEnabled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getAvailabilityStatus() {
|
public int getAvailabilityStatus() {
|
||||||
final ActiveUnlockStatusUtils activeUnlockStatusUtils =
|
final ActiveUnlockStatusUtils activeUnlockStatusUtils =
|
||||||
|
|||||||
@@ -16,8 +16,7 @@
|
|||||||
|
|
||||||
package com.android.settings.biometrics.fingerprint;
|
package com.android.settings.biometrics.fingerprint;
|
||||||
|
|
||||||
import static android.hardware.biometrics.Flags.screenOffUnlockUdfps;
|
import android.annotation.Nullable;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.hardware.fingerprint.FingerprintManager;
|
import android.hardware.fingerprint.FingerprintManager;
|
||||||
|
|
||||||
@@ -25,6 +24,8 @@ import com.android.internal.annotations.VisibleForTesting;
|
|||||||
import com.android.settings.Utils;
|
import com.android.settings.Utils;
|
||||||
import com.android.settings.core.BasePreferenceController;
|
import com.android.settings.core.BasePreferenceController;
|
||||||
|
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Preference controller that controls the fingerprint unlock features to be shown / be hidden.
|
* Preference controller that controls the fingerprint unlock features to be shown / be hidden.
|
||||||
*/
|
*/
|
||||||
@@ -34,17 +35,31 @@ public class FingerprintUnlockCategoryController extends BasePreferenceControlle
|
|||||||
private int mUserId;
|
private int mUserId;
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
protected FingerprintManager mFingerprintManager;
|
protected FingerprintManager mFingerprintManager;
|
||||||
|
@Nullable
|
||||||
|
private Supplier<Boolean> mCategoryHasChildSupplier = null;
|
||||||
|
|
||||||
public FingerprintUnlockCategoryController(Context context, String key) {
|
public FingerprintUnlockCategoryController(Context context, String key) {
|
||||||
super(context, key);
|
super(context, key);
|
||||||
mFingerprintManager = Utils.getFingerprintManagerOrNull(context);
|
mFingerprintManager = Utils.getFingerprintManagerOrNull(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setCategoryHasChildrenSupplier(
|
||||||
|
@Nullable Supplier<Boolean> categoryHasChildSupplier
|
||||||
|
) {
|
||||||
|
mCategoryHasChildSupplier = categoryHasChildSupplier;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getAvailabilityStatus() {
|
public int getAvailabilityStatus() {
|
||||||
|
Supplier<Boolean> categoryHasChildSupplier = mCategoryHasChildSupplier;
|
||||||
|
boolean hasChild = false;
|
||||||
|
if (categoryHasChildSupplier != null) {
|
||||||
|
hasChild = categoryHasChildSupplier.get();
|
||||||
|
}
|
||||||
|
|
||||||
if (mFingerprintManager != null
|
if (mFingerprintManager != null
|
||||||
&& mFingerprintManager.isHardwareDetected()
|
&& mFingerprintManager.isHardwareDetected()
|
||||||
&& (mFingerprintManager.isPowerbuttonFps() || screenOffUnlockUdfps())) {
|
&& hasChild) {
|
||||||
return mFingerprintManager.hasEnrolledTemplates(getUserId())
|
return mFingerprintManager.hasEnrolledTemplates(getUserId())
|
||||||
? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
|
? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -129,8 +129,11 @@ public class BluetoothDetailsAmbientVolumePreferenceController extends Bluetooth
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isAvailable() {
|
public boolean isAvailable() {
|
||||||
return mCachedDevice.isHearingDevice() && mCachedDevice.getProfiles().stream().anyMatch(
|
return mCachedDevice.isHearingDevice()
|
||||||
profile -> profile instanceof VolumeControlProfile);
|
&& mCachedDevice.getProfiles().stream().anyMatch(
|
||||||
|
profile -> profile instanceof VolumeControlProfile)
|
||||||
|
&& mAmbientUiController != null
|
||||||
|
&& mAmbientUiController.isAmbientControlAvailable();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|||||||
@@ -16,14 +16,12 @@
|
|||||||
|
|
||||||
package com.android.settings.bluetooth;
|
package com.android.settings.bluetooth;
|
||||||
|
|
||||||
import static android.bluetooth.BluetoothDevice.DEVICE_TYPE_LE;
|
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_CARKIT;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_CARKIT;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_HEADPHONES;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_HEADPHONES;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_HEARING_AID;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_HEARING_AID;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_OTHER;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_OTHER;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_SPEAKER;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_SPEAKER;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_UNKNOWN;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_UNKNOWN;
|
||||||
import static android.media.audio.Flags.automaticBtDeviceType;
|
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.media.AudioManager;
|
import android.media.AudioManager;
|
||||||
@@ -108,15 +106,8 @@ public class BluetoothDetailsAudioDeviceTypeController extends BluetoothDetailsC
|
|||||||
final int index = pref.findIndexOfValue(value);
|
final int index = pref.findIndexOfValue(value);
|
||||||
if (index >= 0) {
|
if (index >= 0) {
|
||||||
pref.setSummary(pref.getEntries()[index]);
|
pref.setSummary(pref.getEntries()[index]);
|
||||||
if (automaticBtDeviceType()) {
|
|
||||||
mAudioManager.setBluetoothAudioDeviceCategory(
|
mAudioManager.setBluetoothAudioDeviceCategory(
|
||||||
mCachedDevice.getAddress(), Integer.parseInt(value));
|
mCachedDevice.getAddress(), Integer.parseInt(value));
|
||||||
} else {
|
|
||||||
mAudioManager.setBluetoothAudioDeviceCategory_legacy(
|
|
||||||
mCachedDevice.getAddress(),
|
|
||||||
mCachedDevice.getDevice().getType() == DEVICE_TYPE_LE,
|
|
||||||
Integer.parseInt(value));
|
|
||||||
}
|
|
||||||
mCachedDevice.onAudioDeviceCategoryChanged();
|
mCachedDevice.onAudioDeviceCategoryChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -174,15 +165,8 @@ public class BluetoothDetailsAudioDeviceTypeController extends BluetoothDetailsC
|
|||||||
Integer.toString(AUDIO_DEVICE_CATEGORY_OTHER),
|
Integer.toString(AUDIO_DEVICE_CATEGORY_OTHER),
|
||||||
});
|
});
|
||||||
|
|
||||||
@AudioDeviceCategory int deviceCategory;
|
@AudioDeviceCategory int deviceCategory = mAudioManager.getBluetoothAudioDeviceCategory(
|
||||||
if (automaticBtDeviceType()) {
|
|
||||||
deviceCategory = mAudioManager.getBluetoothAudioDeviceCategory(
|
|
||||||
mCachedDevice.getAddress());
|
mCachedDevice.getAddress());
|
||||||
} else {
|
|
||||||
deviceCategory = mAudioManager.getBluetoothAudioDeviceCategory_legacy(
|
|
||||||
mCachedDevice.getAddress(),
|
|
||||||
mCachedDevice.getDevice().getType() == DEVICE_TYPE_LE);
|
|
||||||
}
|
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
Log.v(TAG, "getBluetoothAudioDeviceCategory() device: "
|
Log.v(TAG, "getBluetoothAudioDeviceCategory() device: "
|
||||||
+ mCachedDevice.getDevice().getAnonymizedAddress()
|
+ mCachedDevice.getDevice().getAnonymizedAddress()
|
||||||
@@ -190,11 +174,9 @@ public class BluetoothDetailsAudioDeviceTypeController extends BluetoothDetailsC
|
|||||||
}
|
}
|
||||||
mAudioDeviceTypePreference.setValue(Integer.toString(deviceCategory));
|
mAudioDeviceTypePreference.setValue(Integer.toString(deviceCategory));
|
||||||
|
|
||||||
if (automaticBtDeviceType()) {
|
|
||||||
if (mAudioManager.isBluetoothAudioDeviceCategoryFixed(mCachedDevice.getAddress())) {
|
if (mAudioManager.isBluetoothAudioDeviceCategoryFixed(mCachedDevice.getAddress())) {
|
||||||
mAudioDeviceTypePreference.setEnabled(false);
|
mAudioDeviceTypePreference.setEnabled(false);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
mAudioDeviceTypePreference.setSummary(mAudioDeviceTypePreference.getEntry());
|
mAudioDeviceTypePreference.setSummary(mAudioDeviceTypePreference.getEntry());
|
||||||
mAudioDeviceTypePreference.setOnPreferenceChangeListener(this);
|
mAudioDeviceTypePreference.setOnPreferenceChangeListener(this);
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ package com.android.settings.connecteddevice.audiosharing;
|
|||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
@@ -162,13 +162,13 @@ public class AudioSharingDialogFactory {
|
|||||||
/**
|
/**
|
||||||
* Sets the custom image of the dialog custom body.
|
* Sets the custom image of the dialog custom body.
|
||||||
*
|
*
|
||||||
* @param bitmap The bitmap to be used for the image.
|
* @param drawable The drawable to be used for the image.
|
||||||
* @return This builder.
|
* @return This builder.
|
||||||
*/
|
*/
|
||||||
@NonNull
|
@NonNull
|
||||||
public AudioSharingDialogFactory.DialogBuilder setCustomImage(Bitmap bitmap) {
|
public AudioSharingDialogFactory.DialogBuilder setCustomImage(Drawable drawable) {
|
||||||
ImageView image = mCustomBody.findViewById(R.id.description_image);
|
ImageView image = mCustomBody.findViewById(R.id.description_image);
|
||||||
image.setImageBitmap(bitmap);
|
image.setImageDrawable(drawable);
|
||||||
image.setVisibility(View.VISIBLE);
|
image.setVisibility(View.VISIBLE);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@@ -202,6 +202,21 @@ public class AudioSharingDialogFactory {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the custom message below image.
|
||||||
|
*
|
||||||
|
* @param messageRes Resource ID of the string to be used for the message body.
|
||||||
|
* @return This builder.
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public AudioSharingDialogFactory.DialogBuilder setCustomMessage2(
|
||||||
|
@StringRes int messageRes) {
|
||||||
|
TextView subTitle = mCustomBody.findViewById(R.id.description_text_2);
|
||||||
|
subTitle.setText(messageRes);
|
||||||
|
subTitle.setVisibility(View.VISIBLE);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the custom device actions of the dialog custom body.
|
* Sets the custom device actions of the dialog custom body.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -17,13 +17,13 @@
|
|||||||
package com.android.settings.connecteddevice.audiosharing;
|
package com.android.settings.connecteddevice.audiosharing;
|
||||||
|
|
||||||
import static com.android.settings.connecteddevice.audiosharing.AudioSharingDashboardFragment.SHARE_THEN_PAIR_REQUEST_CODE;
|
import static com.android.settings.connecteddevice.audiosharing.AudioSharingDashboardFragment.SHARE_THEN_PAIR_REQUEST_CODE;
|
||||||
import static com.android.settings.connecteddevice.audiosharing.audiostreams.AudioStreamsQrCodeFragment.getQrCodeBitmap;
|
import static com.android.settings.connecteddevice.audiosharing.audiostreams.AudioStreamsQrCodeFragment.getQrCodeDrawable;
|
||||||
import static com.android.settingslib.bluetooth.LocalBluetoothLeBroadcast.EXTRA_PAIR_AND_JOIN_SHARING;
|
import static com.android.settingslib.bluetooth.LocalBluetoothLeBroadcast.EXTRA_PAIR_AND_JOIN_SHARING;
|
||||||
|
|
||||||
import android.app.Dialog;
|
import android.app.Dialog;
|
||||||
import android.app.settings.SettingsEnums;
|
import android.app.settings.SettingsEnums;
|
||||||
import android.bluetooth.BluetoothLeBroadcastMetadata;
|
import android.bluetooth.BluetoothLeBroadcastMetadata;
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.Pair;
|
import android.util.Pair;
|
||||||
@@ -45,6 +45,7 @@ import com.android.settingslib.bluetooth.BluetoothUtils;
|
|||||||
|
|
||||||
import com.google.common.collect.Iterables;
|
import com.google.common.collect.Iterables;
|
||||||
|
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class AudioSharingDialogFragment extends InstrumentedDialogFragment {
|
public class AudioSharingDialogFragment extends InstrumentedDialogFragment {
|
||||||
@@ -159,7 +160,6 @@ public class AudioSharingDialogFragment extends InstrumentedDialogFragment {
|
|||||||
}
|
}
|
||||||
if (deviceItems.isEmpty()) {
|
if (deviceItems.isEmpty()) {
|
||||||
builder.setTitle(R.string.audio_sharing_share_dialog_title)
|
builder.setTitle(R.string.audio_sharing_share_dialog_title)
|
||||||
.setCustomMessage(R.string.audio_sharing_dialog_connect_device_content)
|
|
||||||
.setCustomPositiveButton(
|
.setCustomPositiveButton(
|
||||||
R.string.audio_sharing_pair_button_label,
|
R.string.audio_sharing_pair_button_label,
|
||||||
v -> {
|
v -> {
|
||||||
@@ -183,14 +183,23 @@ public class AudioSharingDialogFragment extends InstrumentedDialogFragment {
|
|||||||
});
|
});
|
||||||
BluetoothLeBroadcastMetadata metadata = arguments.getParcelable(
|
BluetoothLeBroadcastMetadata metadata = arguments.getParcelable(
|
||||||
BUNDLE_KEY_BROADCAST_METADATA, BluetoothLeBroadcastMetadata.class);
|
BUNDLE_KEY_BROADCAST_METADATA, BluetoothLeBroadcastMetadata.class);
|
||||||
Bitmap qrCodeBitmap = metadata == null ? null : getQrCodeBitmap(metadata,
|
Drawable qrCodeDrawable = metadata == null ? null : getQrCodeDrawable(metadata,
|
||||||
getContext()).orElse(null);
|
getContext()).orElse(null);
|
||||||
if (qrCodeBitmap != null) {
|
if (qrCodeDrawable != null) {
|
||||||
builder.setCustomImage(qrCodeBitmap)
|
builder.setCustomImage(qrCodeDrawable)
|
||||||
.setCustomNegativeButton(com.android.settings.R.string.cancel,
|
.setCustomMessage(
|
||||||
|
getString(
|
||||||
|
R.string.audio_sharing_dialog_qr_code_content,
|
||||||
|
metadata.getBroadcastName(),
|
||||||
|
new String(
|
||||||
|
metadata.getBroadcastCode(),
|
||||||
|
StandardCharsets.UTF_8)))
|
||||||
|
.setCustomMessage2(R.string.audio_sharing_dialog_pair_new_device_content)
|
||||||
|
.setCustomNegativeButton(R.string.audio_streams_dialog_close,
|
||||||
v -> onCancelClick());
|
v -> onCancelClick());
|
||||||
} else {
|
} else {
|
||||||
builder.setCustomImage(R.drawable.audio_sharing_guidance)
|
builder.setCustomImage(R.drawable.audio_sharing_guidance)
|
||||||
|
.setCustomMessage(R.string.audio_sharing_dialog_connect_device_content)
|
||||||
.setCustomNegativeButton(
|
.setCustomNegativeButton(
|
||||||
R.string.audio_sharing_qrcode_button_label,
|
R.string.audio_sharing_qrcode_button_label,
|
||||||
v -> {
|
v -> {
|
||||||
|
|||||||
@@ -16,6 +16,9 @@
|
|||||||
|
|
||||||
package com.android.settings.connecteddevice.audiosharing.audiostreams;
|
package com.android.settings.connecteddevice.audiosharing.audiostreams;
|
||||||
|
|
||||||
|
import static com.android.settingslib.bluetooth.LocalBluetoothLeBroadcastAssistant.LocalBluetoothLeBroadcastSourceState.PAUSED;
|
||||||
|
import static com.android.settingslib.bluetooth.LocalBluetoothLeBroadcastAssistant.LocalBluetoothLeBroadcastSourceState.STREAMING;
|
||||||
|
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationChannel;
|
import android.app.NotificationChannel;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
||||||
@@ -23,6 +26,7 @@ import android.app.Service;
|
|||||||
import android.app.settings.SettingsEnums;
|
import android.app.settings.SettingsEnums;
|
||||||
import android.bluetooth.BluetoothAdapter;
|
import android.bluetooth.BluetoothAdapter;
|
||||||
import android.bluetooth.BluetoothDevice;
|
import android.bluetooth.BluetoothDevice;
|
||||||
|
import android.bluetooth.BluetoothLeBroadcastReceiveState;
|
||||||
import android.bluetooth.BluetoothProfile;
|
import android.bluetooth.BluetoothProfile;
|
||||||
import android.bluetooth.BluetoothVolumeControl;
|
import android.bluetooth.BluetoothVolumeControl;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
@@ -64,7 +68,8 @@ public class AudioStreamMediaService extends Service {
|
|||||||
static final String DEVICES = "audio_stream_media_service_devices";
|
static final String DEVICES = "audio_stream_media_service_devices";
|
||||||
private static final String TAG = "AudioStreamMediaService";
|
private static final String TAG = "AudioStreamMediaService";
|
||||||
private static final int NOTIFICATION_ID = 1;
|
private static final int NOTIFICATION_ID = 1;
|
||||||
private static final int BROADCAST_CONTENT_TEXT = R.string.audio_streams_listening_now;
|
private static final int BROADCAST_LISTENING_NOW_TEXT = R.string.audio_streams_listening_now;
|
||||||
|
private static final int BROADCAST_STREAM_PAUSED_TEXT = R.string.audio_streams_present_now;
|
||||||
@VisibleForTesting static final String LEAVE_BROADCAST_ACTION = "leave_broadcast_action";
|
@VisibleForTesting static final String LEAVE_BROADCAST_ACTION = "leave_broadcast_action";
|
||||||
private static final String LEAVE_BROADCAST_TEXT = "Leave Broadcast";
|
private static final String LEAVE_BROADCAST_TEXT = "Leave Broadcast";
|
||||||
private static final String CHANNEL_ID = "bluetooth_notification_channel";
|
private static final String CHANNEL_ID = "bluetooth_notification_channel";
|
||||||
@@ -94,11 +99,22 @@ public class AudioStreamMediaService extends Service {
|
|||||||
LEAVE_BROADCAST_ACTION,
|
LEAVE_BROADCAST_ACTION,
|
||||||
LEAVE_BROADCAST_TEXT,
|
LEAVE_BROADCAST_TEXT,
|
||||||
com.android.settings.R.drawable.ic_clear);
|
com.android.settings.R.drawable.ic_clear);
|
||||||
|
private final PlaybackState.Builder mPlayStateHysteresisBuilder =
|
||||||
|
new PlaybackState.Builder()
|
||||||
|
.setState(
|
||||||
|
PlaybackState.STATE_STOPPED,
|
||||||
|
STATIC_PLAYBACK_POSITION,
|
||||||
|
ZERO_PLAYBACK_SPEED)
|
||||||
|
.addCustomAction(
|
||||||
|
LEAVE_BROADCAST_ACTION,
|
||||||
|
LEAVE_BROADCAST_TEXT,
|
||||||
|
com.android.settings.R.drawable.ic_clear);
|
||||||
|
|
||||||
private final MetricsFeatureProvider mMetricsFeatureProvider =
|
private final MetricsFeatureProvider mMetricsFeatureProvider =
|
||||||
FeatureFactory.getFeatureFactory().getMetricsFeatureProvider();
|
FeatureFactory.getFeatureFactory().getMetricsFeatureProvider();
|
||||||
private final ExecutorService mExecutor = Executors.newSingleThreadExecutor();
|
private final ExecutorService mExecutor = Executors.newSingleThreadExecutor();
|
||||||
private final AtomicBoolean mIsMuted = new AtomicBoolean(false);
|
private final AtomicBoolean mIsMuted = new AtomicBoolean(false);
|
||||||
|
private final AtomicBoolean mIsHysteresis = new AtomicBoolean(false);
|
||||||
// Set 25 as default as the volume range from `VolumeControlProfile` is from 0 to 255.
|
// Set 25 as default as the volume range from `VolumeControlProfile` is from 0 to 255.
|
||||||
// If the initial volume from `onDeviceVolumeChanged` is larger than zero (not muted), we will
|
// If the initial volume from `onDeviceVolumeChanged` is larger than zero (not muted), we will
|
||||||
// override this value. Otherwise, we raise the volume to 25 when the play button is clicked.
|
// override this value. Otherwise, we raise the volume to 25 when the play button is clicked.
|
||||||
@@ -255,6 +271,9 @@ public class AudioStreamMediaService extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private PlaybackState getPlaybackState() {
|
private PlaybackState getPlaybackState() {
|
||||||
|
if (mIsHysteresis.get()) {
|
||||||
|
return mPlayStateHysteresisBuilder.build();
|
||||||
|
}
|
||||||
return mIsMuted.get() ? mPlayStatePausingBuilder.build() : mPlayStatePlayingBuilder.build();
|
return mIsMuted.get() ? mPlayStatePausingBuilder.build() : mPlayStatePlayingBuilder.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -283,7 +302,9 @@ public class AudioStreamMediaService extends Service {
|
|||||||
new Notification.Builder(this, CHANNEL_ID)
|
new Notification.Builder(this, CHANNEL_ID)
|
||||||
.setSmallIcon(com.android.settingslib.R.drawable.ic_bt_le_audio_sharing)
|
.setSmallIcon(com.android.settingslib.R.drawable.ic_bt_le_audio_sharing)
|
||||||
.setStyle(mediaStyle)
|
.setStyle(mediaStyle)
|
||||||
.setContentText(getString(BROADCAST_CONTENT_TEXT))
|
.setContentText(getString(
|
||||||
|
mIsHysteresis.get() ? BROADCAST_STREAM_PAUSED_TEXT :
|
||||||
|
BROADCAST_LISTENING_NOW_TEXT))
|
||||||
.setSilent(true);
|
.setSilent(true);
|
||||||
return notificationBuilder.build();
|
return notificationBuilder.build();
|
||||||
}
|
}
|
||||||
@@ -307,6 +328,38 @@ public class AudioStreamMediaService extends Service {
|
|||||||
handleRemoveSource();
|
handleRemoveSource();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onReceiveStateChanged(
|
||||||
|
BluetoothDevice sink, int sourceId, BluetoothLeBroadcastReceiveState state) {
|
||||||
|
super.onReceiveStateChanged(sink, sourceId, state);
|
||||||
|
if (!mHysteresisModeFixAvailable || mDevices == null || !mDevices.contains(sink)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var sourceState = LocalBluetoothLeBroadcastAssistant.getLocalSourceState(state);
|
||||||
|
boolean streaming = sourceState == STREAMING;
|
||||||
|
boolean paused = sourceState == PAUSED;
|
||||||
|
// Exit early if the state is neither streaming nor paused
|
||||||
|
if (!streaming && !paused) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Atomically update mIsHysteresis if its current value is not the current paused state
|
||||||
|
if (mIsHysteresis.compareAndSet(!paused, paused)) {
|
||||||
|
synchronized (mLocalSessionLock) {
|
||||||
|
if (mLocalSession == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
mLocalSession.setPlaybackState(getPlaybackState());
|
||||||
|
if (mNotificationManager != null) {
|
||||||
|
mNotificationManager.notify(
|
||||||
|
NOTIFICATION_ID,
|
||||||
|
buildNotification(mLocalSession.getSessionToken())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Log.d(TAG, "updating hysteresis mode to : " + paused);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void handleRemoveSource() {
|
private void handleRemoveSource() {
|
||||||
if (mAudioStreamsHelper != null
|
if (mAudioStreamsHelper != null
|
||||||
&& !mAudioStreamsHelper.getConnectedBroadcastIdAndState(
|
&& !mAudioStreamsHelper.getConnectedBroadcastIdAndState(
|
||||||
|
|||||||
@@ -19,7 +19,9 @@ package com.android.settings.connecteddevice.audiosharing.audiostreams;
|
|||||||
import android.app.settings.SettingsEnums;
|
import android.app.settings.SettingsEnums;
|
||||||
import android.bluetooth.BluetoothLeBroadcastMetadata;
|
import android.bluetooth.BluetoothLeBroadcastMetadata;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.content.res.Resources;
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
@@ -30,6 +32,8 @@ import android.widget.TextView;
|
|||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.core.graphics.drawable.RoundedBitmapDrawable;
|
||||||
|
import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory;
|
||||||
|
|
||||||
import com.android.settings.R;
|
import com.android.settings.R;
|
||||||
import com.android.settings.bluetooth.Utils;
|
import com.android.settings.bluetooth.Utils;
|
||||||
@@ -70,15 +74,16 @@ public class AudioStreamsQrCodeFragment extends InstrumentedFragment {
|
|||||||
if (broadcastMetadata == null) {
|
if (broadcastMetadata == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Bitmap bm = getQrCodeBitmap(broadcastMetadata, getActivity()).orElse(null);
|
Drawable drawable = getQrCodeDrawable(broadcastMetadata, getActivity()).orElse(
|
||||||
if (bm == null) {
|
null);
|
||||||
|
if (drawable == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ThreadUtils.postOnMainThread(
|
ThreadUtils.postOnMainThread(
|
||||||
() -> {
|
() -> {
|
||||||
((ImageView) view.requireViewById(R.id.qrcode_view))
|
((ImageView) view.requireViewById(R.id.qrcode_view))
|
||||||
.setImageBitmap(bm);
|
.setImageDrawable(drawable);
|
||||||
if (broadcastMetadata.getBroadcastCode() != null) {
|
if (broadcastMetadata.getBroadcastCode() != null) {
|
||||||
String password =
|
String password =
|
||||||
new String(
|
new String(
|
||||||
@@ -101,28 +106,33 @@ public class AudioStreamsQrCodeFragment extends InstrumentedFragment {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Gets an optional bitmap from metadata. */
|
/** Gets an optional drawable from metadata. */
|
||||||
public static Optional<Bitmap> getQrCodeBitmap(@Nullable BluetoothLeBroadcastMetadata metadata,
|
public static Optional<Drawable> getQrCodeDrawable(
|
||||||
|
@Nullable BluetoothLeBroadcastMetadata metadata,
|
||||||
Context context) {
|
Context context) {
|
||||||
if (metadata == null) {
|
if (metadata == null) {
|
||||||
Log.d(TAG, "getQrCodeBitmap: broadcastMetadata is empty!");
|
Log.d(TAG, "getQrCodeDrawable: broadcastMetadata is empty!");
|
||||||
return Optional.empty();
|
return Optional.empty();
|
||||||
}
|
}
|
||||||
String metadataStr = BluetoothLeBroadcastMetadataExt.INSTANCE.toQrCodeString(metadata);
|
String metadataStr = BluetoothLeBroadcastMetadataExt.INSTANCE.toQrCodeString(metadata);
|
||||||
if (metadataStr.isEmpty()) {
|
if (metadataStr.isEmpty()) {
|
||||||
Log.d(TAG, "getQrCodeBitmap: metadataStr is empty!");
|
Log.d(TAG, "getQrCodeDrawable: metadataStr is empty!");
|
||||||
return Optional.empty();
|
return Optional.empty();
|
||||||
}
|
}
|
||||||
Log.d(TAG, "getQrCodeBitmap: metadata : " + metadata);
|
Log.d(TAG, "getQrCodeDrawable: metadata : " + metadata);
|
||||||
try {
|
try {
|
||||||
int qrcodeSize =
|
Resources resources = context.getResources();
|
||||||
context.getResources().getDimensionPixelSize(R.dimen.audio_streams_qrcode_size);
|
int qrcodeSize = resources.getDimensionPixelSize(R.dimen.audio_streams_qrcode_size);
|
||||||
Bitmap bitmap = QrCodeGenerator.encodeQrCode(metadataStr, qrcodeSize);
|
int margin = resources.getDimensionPixelSize(R.dimen.audio_streams_qrcode_margin);
|
||||||
return Optional.of(bitmap);
|
Bitmap bitmap = QrCodeGenerator.encodeQrCode(metadataStr, qrcodeSize, margin);
|
||||||
|
RoundedBitmapDrawable drawable = RoundedBitmapDrawableFactory.create(resources, bitmap);
|
||||||
|
drawable.setCornerRadius(resources.getDimensionPixelSize(
|
||||||
|
R.dimen.audio_streams_qrcode_preview_radius));
|
||||||
|
return Optional.of(drawable);
|
||||||
} catch (WriterException e) {
|
} catch (WriterException e) {
|
||||||
Log.d(
|
Log.d(
|
||||||
TAG,
|
TAG,
|
||||||
"getQrCodeBitmap: broadcastMetadata "
|
"getQrCodeDrawable: broadcastMetadata "
|
||||||
+ metadata
|
+ metadata
|
||||||
+ " qrCode generation exception "
|
+ " qrCode generation exception "
|
||||||
+ e);
|
+ e);
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ import com.android.settings.safetycenter.MoreSecurityPrivacyFragment;
|
|||||||
import com.android.settings.security.LockscreenDashboardFragment;
|
import com.android.settings.security.LockscreenDashboardFragment;
|
||||||
import com.android.settings.security.SecurityAdvancedSettings;
|
import com.android.settings.security.SecurityAdvancedSettings;
|
||||||
import com.android.settings.security.SecuritySettings;
|
import com.android.settings.security.SecuritySettings;
|
||||||
|
import com.android.settings.supervision.SupervisionDashboardFragment;
|
||||||
import com.android.settings.system.SystemDashboardFragment;
|
import com.android.settings.system.SystemDashboardFragment;
|
||||||
import com.android.settingslib.drawer.CategoryKey;
|
import com.android.settingslib.drawer.CategoryKey;
|
||||||
|
|
||||||
@@ -132,6 +133,8 @@ public class DashboardFragmentRegistry {
|
|||||||
CategoryKey.CATEGORY_SPECIAL_APP_ACCESS);
|
CategoryKey.CATEGORY_SPECIAL_APP_ACCESS);
|
||||||
PARENT_TO_CATEGORY_KEY_MAP.put(MoreSecurityPrivacyFragment.class.getName(),
|
PARENT_TO_CATEGORY_KEY_MAP.put(MoreSecurityPrivacyFragment.class.getName(),
|
||||||
CategoryKey.CATEGORY_MORE_SECURITY_PRIVACY_SETTINGS);
|
CategoryKey.CATEGORY_MORE_SECURITY_PRIVACY_SETTINGS);
|
||||||
|
PARENT_TO_CATEGORY_KEY_MAP.put(SupervisionDashboardFragment.class.getName(),
|
||||||
|
CategoryKey.CATEGORY_SUPERVISION);
|
||||||
|
|
||||||
CATEGORY_KEY_TO_PARENT_MAP = new ArrayMap<>(PARENT_TO_CATEGORY_KEY_MAP.size());
|
CATEGORY_KEY_TO_PARENT_MAP = new ArrayMap<>(PARENT_TO_CATEGORY_KEY_MAP.size());
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
package com.android.settings.datausage
|
package com.android.settings.datausage
|
||||||
|
|
||||||
import android.Manifest
|
|
||||||
import android.app.settings.SettingsEnums.ACTION_DATA_SAVER_MODE
|
import android.app.settings.SettingsEnums.ACTION_DATA_SAVER_MODE
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.android.settings.PreferenceActionMetricsProvider
|
import com.android.settings.PreferenceActionMetricsProvider
|
||||||
@@ -50,11 +49,9 @@ class DataSaverMainSwitchPreference :
|
|||||||
|
|
||||||
override fun storage(context: Context) = createDataStore(context)
|
override fun storage(context: Context) = createDataStore(context)
|
||||||
|
|
||||||
override fun getReadPermissions(context: Context) =
|
override fun getReadPermissions(context: Context) = Permissions.EMPTY
|
||||||
Permissions.allOf(Manifest.permission.MANAGE_NETWORK_POLICY)
|
|
||||||
|
|
||||||
override fun getWritePermissions(context: Context) =
|
override fun getWritePermissions(context: Context) = Permissions.EMPTY
|
||||||
Permissions.allOf(Manifest.permission.MANAGE_NETWORK_POLICY)
|
|
||||||
|
|
||||||
override fun getReadPermit(context: Context, callingPid: Int, callingUid: Int) =
|
override fun getReadPermit(context: Context, callingPid: Int, callingUid: Int) =
|
||||||
ReadWritePermit.ALLOW
|
ReadWritePermit.ALLOW
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ import com.android.settings.R;
|
|||||||
import com.android.settings.Utils;
|
import com.android.settings.Utils;
|
||||||
import com.android.settings.core.BasePreferenceController;
|
import com.android.settings.core.BasePreferenceController;
|
||||||
import com.android.settings.fuelgauge.BatteryUtils;
|
import com.android.settings.fuelgauge.BatteryUtils;
|
||||||
|
import com.android.settingslib.widget.SettingsThemeHelper;
|
||||||
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
@@ -119,10 +120,11 @@ public class ScreenOnTimeController extends BasePreferenceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final SpannableString spannableText = new SpannableString(text);
|
final SpannableString spannableText = new SpannableString(text);
|
||||||
|
final int enlargeFontSizeDp = SettingsThemeHelper.isExpressiveTheme(context) ? 64 : 36;
|
||||||
final Matcher matcher = NUMBER_PATTERN.matcher(text);
|
final Matcher matcher = NUMBER_PATTERN.matcher(text);
|
||||||
while (matcher.find()) {
|
while (matcher.find()) {
|
||||||
spannableText.setSpan(
|
spannableText.setSpan(
|
||||||
new AbsoluteSizeSpan(36, true /* dip */),
|
new AbsoluteSizeSpan(enlargeFontSizeDp, true /* dip */),
|
||||||
matcher.start(),
|
matcher.start(),
|
||||||
matcher.end(),
|
matcher.end(),
|
||||||
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
|||||||
@@ -25,9 +25,10 @@ import androidx.preference.PreferenceViewHolder;
|
|||||||
|
|
||||||
import com.android.internal.annotations.VisibleForTesting;
|
import com.android.internal.annotations.VisibleForTesting;
|
||||||
import com.android.settings.R;
|
import com.android.settings.R;
|
||||||
|
import com.android.settingslib.widget.GroupSectionDividerMixin;
|
||||||
|
|
||||||
/** A preference for a single text view. */
|
/** A preference for a single text view. */
|
||||||
public class TextViewPreference extends Preference {
|
public class TextViewPreference extends Preference implements GroupSectionDividerMixin {
|
||||||
private static final String TAG = "TextViewPreference";
|
private static final String TAG = "TextViewPreference";
|
||||||
|
|
||||||
@VisibleForTesting CharSequence mText;
|
@VisibleForTesting CharSequence mText;
|
||||||
|
|||||||
@@ -25,36 +25,29 @@ import android.database.ContentObserver;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.UserHandle;
|
import android.os.UserHandle;
|
||||||
import android.view.View;
|
|
||||||
import android.widget.RadioButton;
|
|
||||||
import android.widget.RadioGroup;
|
|
||||||
import android.widget.SeekBar;
|
|
||||||
import android.widget.TextView;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.appcompat.app.AlertDialog;
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.fragment.app.FragmentManager;
|
||||||
import androidx.lifecycle.LifecycleObserver;
|
import androidx.lifecycle.LifecycleObserver;
|
||||||
import androidx.lifecycle.OnLifecycleEvent;
|
import androidx.lifecycle.OnLifecycleEvent;
|
||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
|
|
||||||
import com.android.settings.R;
|
|
||||||
import com.android.settings.core.TogglePreferenceController;
|
import com.android.settings.core.TogglePreferenceController;
|
||||||
import com.android.settings.keyboard.Flags;
|
import com.android.settings.keyboard.Flags;
|
||||||
import com.android.settings.overlay.FeatureFactory;
|
import com.android.settings.overlay.FeatureFactory;
|
||||||
import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
|
import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
|
||||||
|
|
||||||
import java.text.NumberFormat;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstract class for toggle controllers of Keyboard input setting related function.
|
* Abstract class for toggle controllers of Keyboard input setting related function.
|
||||||
*/
|
*/
|
||||||
public abstract class InputSettingPreferenceController extends TogglePreferenceController implements
|
public abstract class InputSettingPreferenceController extends TogglePreferenceController implements
|
||||||
LifecycleObserver {
|
LifecycleObserver {
|
||||||
private static final int CUSTOM_PROGRESS_INTERVAL = 100;
|
|
||||||
private static final long MILLISECOND_IN_SECONDS = TimeUnit.SECONDS.toMillis(1);
|
|
||||||
private final ContentResolver mContentResolver;
|
private final ContentResolver mContentResolver;
|
||||||
protected final MetricsFeatureProvider mMetricsFeatureProvider;
|
protected final MetricsFeatureProvider mMetricsFeatureProvider;
|
||||||
|
protected FragmentManager mFragmentManager;
|
||||||
|
|
||||||
private final ContentObserver mContentObserver = new ContentObserver(new Handler(true)) {
|
private final ContentObserver mContentObserver = new ContentObserver(new Handler(true)) {
|
||||||
@Override
|
@Override
|
||||||
public void onChange(boolean selfChange, Uri uri) {
|
public void onChange(boolean selfChange, Uri uri) {
|
||||||
@@ -72,13 +65,6 @@ public abstract class InputSettingPreferenceController extends TogglePreferenceC
|
|||||||
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int getInputSettingKeysValue() {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public InputSettingPreferenceController(@NonNull Context context,
|
public InputSettingPreferenceController(@NonNull Context context,
|
||||||
@NonNull String preferenceKey) {
|
@NonNull String preferenceKey) {
|
||||||
super(context, preferenceKey);
|
super(context, preferenceKey);
|
||||||
@@ -86,6 +72,10 @@ public abstract class InputSettingPreferenceController extends TogglePreferenceC
|
|||||||
mMetricsFeatureProvider = FeatureFactory.getFeatureFactory().getMetricsFeatureProvider();
|
mMetricsFeatureProvider = FeatureFactory.getFeatureFactory().getMetricsFeatureProvider();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setFragment(Fragment fragment) {
|
||||||
|
mFragmentManager = fragment.getParentFragmentManager();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateState(@NonNull Preference preference) {
|
public void updateState(@NonNull Preference preference) {
|
||||||
super.updateState(preference);
|
super.updateState(preference);
|
||||||
@@ -127,113 +117,4 @@ public abstract class InputSettingPreferenceController extends TogglePreferenceC
|
|||||||
private void unregisterSettingsObserver() {
|
private void unregisterSettingsObserver() {
|
||||||
mContentResolver.unregisterContentObserver(mContentObserver);
|
mContentResolver.unregisterContentObserver(mContentObserver);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void constructDialog(Context context, int titleRes, int subtitleRes) {
|
|
||||||
mAlertDialog = new AlertDialog.Builder(context)
|
|
||||||
.setView(R.layout.dialog_keyboard_a11y_input_setting_keys)
|
|
||||||
.setPositiveButton(android.R.string.ok,
|
|
||||||
(dialog, which) -> {
|
|
||||||
RadioGroup radioGroup =
|
|
||||||
mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_group);
|
|
||||||
SeekBar seekbar = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_custom_slider);
|
|
||||||
RadioButton customRadioButton = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_custom);
|
|
||||||
int threshold;
|
|
||||||
if (customRadioButton.isChecked()) {
|
|
||||||
threshold = seekbar.getProgress() * CUSTOM_PROGRESS_INTERVAL;
|
|
||||||
} else {
|
|
||||||
int checkedRadioButtonId = radioGroup.getCheckedRadioButtonId();
|
|
||||||
if (checkedRadioButtonId == R.id.input_setting_keys_value_600) {
|
|
||||||
threshold = 600;
|
|
||||||
} else if (checkedRadioButtonId
|
|
||||||
== R.id.input_setting_keys_value_400) {
|
|
||||||
threshold = 400;
|
|
||||||
} else if (checkedRadioButtonId
|
|
||||||
== R.id.input_setting_keys_value_200) {
|
|
||||||
threshold = 200;
|
|
||||||
} else {
|
|
||||||
threshold = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
updateInputSettingKeysValue(threshold);
|
|
||||||
onCustomValueUpdated(threshold);
|
|
||||||
})
|
|
||||||
.setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.dismiss())
|
|
||||||
.create();
|
|
||||||
mAlertDialog.setOnShowListener(dialog -> {
|
|
||||||
RadioGroup cannedValueRadioGroup = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_group);
|
|
||||||
RadioButton customRadioButton = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_custom);
|
|
||||||
TextView customValueTextView = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_custom_value);
|
|
||||||
SeekBar customProgressBar = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_value_custom_slider);
|
|
||||||
TextView titleTextView = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_dialog_title);
|
|
||||||
TextView subTitleTextView = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_dialog_subtitle);
|
|
||||||
titleTextView.setText(titleRes);
|
|
||||||
subTitleTextView.setText(subtitleRes);
|
|
||||||
|
|
||||||
customProgressBar.incrementProgressBy(CUSTOM_PROGRESS_INTERVAL);
|
|
||||||
customProgressBar.setProgress(1);
|
|
||||||
View customValueView = mAlertDialog.findViewById(
|
|
||||||
R.id.input_setting_keys_custom_value_option);
|
|
||||||
customValueView.setOnClickListener(l -> customRadioButton.performClick());
|
|
||||||
customRadioButton.setOnCheckedChangeListener((buttonView, isChecked) -> {
|
|
||||||
if (isChecked) {
|
|
||||||
cannedValueRadioGroup.clearCheck();
|
|
||||||
}
|
|
||||||
customValueTextView.setVisibility(isChecked ? View.VISIBLE : View.GONE);
|
|
||||||
customValueTextView.setText(
|
|
||||||
progressToThresholdInSecond(customProgressBar.getProgress()));
|
|
||||||
customProgressBar.setVisibility(isChecked ? View.VISIBLE : View.GONE);
|
|
||||||
buttonView.setChecked(isChecked);
|
|
||||||
});
|
|
||||||
cannedValueRadioGroup.setOnCheckedChangeListener(
|
|
||||||
(group, checkedId) -> customRadioButton.setChecked(false));
|
|
||||||
customProgressBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
|
|
||||||
@Override
|
|
||||||
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
|
|
||||||
customValueTextView.setText(progressToThresholdInSecond(progress));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onStartTrackingTouch(SeekBar seekBar) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onStopTrackingTouch(SeekBar seekBar) {
|
|
||||||
}
|
|
||||||
});
|
|
||||||
initStateBasedOnThreshold(cannedValueRadioGroup, customRadioButton, customValueTextView,
|
|
||||||
customProgressBar);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private static String progressToThresholdInSecond(int progress) {
|
|
||||||
return NumberFormat.getInstance().format((float) progress * CUSTOM_PROGRESS_INTERVAL
|
|
||||||
/ MILLISECOND_IN_SECONDS);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void initStateBasedOnThreshold(RadioGroup cannedValueRadioGroup,
|
|
||||||
RadioButton customRadioButton, TextView customValueTextView,
|
|
||||||
SeekBar customProgressBar) {
|
|
||||||
int inputSettingKeysThreshold = getInputSettingKeysValue();
|
|
||||||
switch (inputSettingKeysThreshold) {
|
|
||||||
case 600 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_600);
|
|
||||||
case 400 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_400);
|
|
||||||
case 0, 200 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_200);
|
|
||||||
default -> {
|
|
||||||
customValueTextView.setText(
|
|
||||||
String.valueOf(
|
|
||||||
(double) inputSettingKeysThreshold / MILLISECOND_IN_SECONDS));
|
|
||||||
customProgressBar.setProgress(inputSettingKeysThreshold / CUSTOM_PROGRESS_INTERVAL);
|
|
||||||
customRadioButton.setChecked(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
package com.android.settings.inputmethod;
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_CUSTOM_VALUE_CHANGE;
|
|
||||||
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_DISABLED;
|
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_DISABLED;
|
||||||
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_ENABLED;
|
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_ENABLED;
|
||||||
|
|
||||||
@@ -32,13 +31,13 @@ import androidx.lifecycle.LifecycleObserver;
|
|||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
import androidx.preference.PreferenceScreen;
|
import androidx.preference.PreferenceScreen;
|
||||||
|
|
||||||
import com.android.settings.R;
|
|
||||||
import com.android.settingslib.PrimarySwitchPreference;
|
import com.android.settingslib.PrimarySwitchPreference;
|
||||||
|
|
||||||
public class KeyboardAccessibilityBounceKeysController extends
|
public class KeyboardAccessibilityBounceKeysController extends
|
||||||
InputSettingPreferenceController implements
|
InputSettingPreferenceController implements
|
||||||
LifecycleObserver {
|
LifecycleObserver {
|
||||||
public static final int BOUNCE_KEYS_THRESHOLD = 500;
|
public static final int BOUNCE_KEYS_THRESHOLD = 500;
|
||||||
|
private static final String KEY_TAG = "bounce_keys_dialog_tag";
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
private PrimarySwitchPreference mPrimaryPreference;
|
private PrimarySwitchPreference mPrimaryPreference;
|
||||||
@@ -46,8 +45,6 @@ public class KeyboardAccessibilityBounceKeysController extends
|
|||||||
public KeyboardAccessibilityBounceKeysController(@NonNull Context context,
|
public KeyboardAccessibilityBounceKeysController(@NonNull Context context,
|
||||||
@NonNull String key) {
|
@NonNull String key) {
|
||||||
super(context, key);
|
super(context, key);
|
||||||
constructDialog(context, R.string.bounce_keys_dialog_title,
|
|
||||||
R.string.bounce_keys_dialog_subtitle);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -65,12 +62,11 @@ public class KeyboardAccessibilityBounceKeysController extends
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean handlePreferenceTreeClick(@NonNull Preference preference) {
|
public boolean handlePreferenceTreeClick(@NonNull Preference preference) {
|
||||||
if (!TextUtils.equals(preference.getKey(), getPreferenceKey())) {
|
if (!TextUtils.equals(preference.getKey(), getPreferenceKey())
|
||||||
|
|| mFragmentManager == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (mAlertDialog != null) {
|
KeyboardAccessibilityBounceKeysDialogFragment.getInstance().show(mFragmentManager, KEY_TAG);
|
||||||
mAlertDialog.show();
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,12 +83,6 @@ public class KeyboardAccessibilityBounceKeysController extends
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
|
||||||
mMetricsFeatureProvider.action(mContext, ACTION_BOUNCE_KEYS_CUSTOM_VALUE_CHANGE,
|
|
||||||
thresholdTimeMillis);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onInputSettingUpdated() {
|
protected void onInputSettingUpdated() {
|
||||||
if (mPrimaryPreference != null) {
|
if (mPrimaryPreference != null) {
|
||||||
@@ -111,9 +101,4 @@ public class KeyboardAccessibilityBounceKeysController extends
|
|||||||
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
InputSettings.setAccessibilityBounceKeysThreshold(mContext, thresholdTimeMillis);
|
InputSettings.setAccessibilityBounceKeysThreshold(mContext, thresholdTimeMillis);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected int getInputSettingKeysValue() {
|
|
||||||
return InputSettings.getAccessibilityBounceKeysThreshold(mContext);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
|
import static android.app.settings.SettingsEnums.ACTION_BOUNCE_KEYS_CUSTOM_VALUE_CHANGE;
|
||||||
|
|
||||||
|
import android.hardware.input.InputSettings;
|
||||||
|
import android.os.Bundle;
|
||||||
|
|
||||||
|
import com.android.settings.R;
|
||||||
|
|
||||||
|
public class KeyboardAccessibilityBounceKeysDialogFragment extends
|
||||||
|
KeyboardAccessibilityKeysDialogFragment {
|
||||||
|
|
||||||
|
static KeyboardAccessibilityBounceKeysDialogFragment getInstance() {
|
||||||
|
final KeyboardAccessibilityBounceKeysDialogFragment result =
|
||||||
|
new KeyboardAccessibilityBounceKeysDialogFragment();
|
||||||
|
Bundle bundle = new Bundle();
|
||||||
|
bundle.putInt(EXTRA_TITLE_RES, R.string.bounce_keys_dialog_title);
|
||||||
|
bundle.putInt(EXTRA_SUBTITLE_RES, R.string.bounce_keys_dialog_subtitle);
|
||||||
|
bundle.putInt(EXTRA_SEEKBAR_CONTENT_DESCRIPTION,
|
||||||
|
R.string.input_setting_bounce_keys_seekbar_desc);
|
||||||
|
result.setArguments(bundle);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
|
InputSettings.setAccessibilityBounceKeysThreshold(getContext(), thresholdTimeMillis);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
||||||
|
mMetricsFeatureProvider.action(getContext(), ACTION_BOUNCE_KEYS_CUSTOM_VALUE_CHANGE,
|
||||||
|
thresholdTimeMillis);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected int getInputSettingKeysValue() {
|
||||||
|
return InputSettings.getAccessibilityBounceKeysThreshold(getContext());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,198 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
|
import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.app.Dialog;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.Window;
|
||||||
|
import android.widget.RadioButton;
|
||||||
|
import android.widget.RadioGroup;
|
||||||
|
import android.widget.SeekBar;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.fragment.app.DialogFragment;
|
||||||
|
|
||||||
|
import com.android.settings.R;
|
||||||
|
import com.android.settings.overlay.FeatureFactory;
|
||||||
|
import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
|
||||||
|
|
||||||
|
import org.jspecify.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
public abstract class KeyboardAccessibilityKeysDialogFragment extends DialogFragment {
|
||||||
|
private static final int CUSTOM_PROGRESS_INTERVAL = 100;
|
||||||
|
private static final long MILLISECOND_IN_SECONDS = TimeUnit.SECONDS.toMillis(1);
|
||||||
|
protected static final String EXTRA_TITLE_RES = "extra_title_res";
|
||||||
|
protected static final String EXTRA_SUBTITLE_RES = "extra_subtitle_res";
|
||||||
|
protected static final String EXTRA_SEEKBAR_CONTENT_DESCRIPTION =
|
||||||
|
"extra_seekbar_content_description_res";
|
||||||
|
|
||||||
|
protected final MetricsFeatureProvider mMetricsFeatureProvider;
|
||||||
|
|
||||||
|
public KeyboardAccessibilityKeysDialogFragment() {
|
||||||
|
mMetricsFeatureProvider = FeatureFactory.getFeatureFactory().getMetricsFeatureProvider();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getInputSettingKeysValue() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
|
||||||
|
super.onCreateDialog(savedInstanceState);
|
||||||
|
int titleRes = getArguments().getInt(EXTRA_TITLE_RES);
|
||||||
|
int subtitleRes = getArguments().getInt(EXTRA_SUBTITLE_RES);
|
||||||
|
int seekbarContentDescriptionRes = getArguments().getInt(EXTRA_SEEKBAR_CONTENT_DESCRIPTION);
|
||||||
|
|
||||||
|
Activity activity = getActivity();
|
||||||
|
View dialoglayout =
|
||||||
|
LayoutInflater.from(activity).inflate(
|
||||||
|
R.layout.dialog_keyboard_a11y_input_setting_keys, null);
|
||||||
|
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(activity);
|
||||||
|
dialogBuilder.setView(dialoglayout);
|
||||||
|
dialogBuilder.setPositiveButton(android.R.string.ok,
|
||||||
|
(dialog, which) -> {
|
||||||
|
RadioGroup radioGroup =
|
||||||
|
dialoglayout.findViewById(
|
||||||
|
R.id.input_setting_keys_value_group);
|
||||||
|
SeekBar seekbar = dialoglayout.findViewById(
|
||||||
|
R.id.input_setting_keys_value_custom_slider);
|
||||||
|
RadioButton customRadioButton = dialoglayout.findViewById(
|
||||||
|
R.id.input_setting_keys_value_custom);
|
||||||
|
int threshold;
|
||||||
|
if (customRadioButton.isChecked()) {
|
||||||
|
threshold = seekbar.getProgress() * CUSTOM_PROGRESS_INTERVAL;
|
||||||
|
} else {
|
||||||
|
int checkedRadioButtonId = radioGroup.getCheckedRadioButtonId();
|
||||||
|
if (checkedRadioButtonId == R.id.input_setting_keys_value_600) {
|
||||||
|
threshold = 600;
|
||||||
|
} else if (checkedRadioButtonId
|
||||||
|
== R.id.input_setting_keys_value_400) {
|
||||||
|
threshold = 400;
|
||||||
|
} else if (checkedRadioButtonId
|
||||||
|
== R.id.input_setting_keys_value_200) {
|
||||||
|
threshold = 200;
|
||||||
|
} else {
|
||||||
|
threshold = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
updateInputSettingKeysValue(threshold);
|
||||||
|
onCustomValueUpdated(threshold);
|
||||||
|
})
|
||||||
|
.setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.dismiss());
|
||||||
|
AlertDialog accessibilityKeyDialog = dialogBuilder.create();
|
||||||
|
accessibilityKeyDialog.setOnShowListener(dialog -> {
|
||||||
|
RadioGroup cannedValueRadioGroup = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_value_group);
|
||||||
|
RadioButton customRadioButton = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_value_custom);
|
||||||
|
TextView customValueTextView = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_value_custom_value);
|
||||||
|
SeekBar customProgressBar = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_value_custom_slider);
|
||||||
|
TextView titleTextView = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_dialog_title);
|
||||||
|
TextView subTitleTextView = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_dialog_subtitle);
|
||||||
|
titleTextView.setText(titleRes);
|
||||||
|
subTitleTextView.setText(subtitleRes);
|
||||||
|
|
||||||
|
if (seekbarContentDescriptionRes != 0) {
|
||||||
|
customProgressBar.setContentDescription(
|
||||||
|
getContext().getString(seekbarContentDescriptionRes));
|
||||||
|
}
|
||||||
|
customProgressBar.incrementProgressBy(CUSTOM_PROGRESS_INTERVAL);
|
||||||
|
customProgressBar.setProgress(1);
|
||||||
|
View customValueView = accessibilityKeyDialog.findViewById(
|
||||||
|
R.id.input_setting_keys_custom_value_option);
|
||||||
|
customValueView.setOnClickListener(l -> customRadioButton.performClick());
|
||||||
|
customRadioButton.setOnCheckedChangeListener((buttonView, isChecked) -> {
|
||||||
|
if (isChecked) {
|
||||||
|
cannedValueRadioGroup.clearCheck();
|
||||||
|
}
|
||||||
|
customValueTextView.setVisibility(isChecked ? View.VISIBLE : View.GONE);
|
||||||
|
customValueTextView.setText(
|
||||||
|
progressToThresholdInSecond(customProgressBar.getProgress()));
|
||||||
|
customProgressBar.setVisibility(isChecked ? View.VISIBLE : View.GONE);
|
||||||
|
buttonView.setChecked(isChecked);
|
||||||
|
});
|
||||||
|
cannedValueRadioGroup.setOnCheckedChangeListener(
|
||||||
|
(group, checkedId) -> customRadioButton.setChecked(false));
|
||||||
|
customProgressBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
|
||||||
|
String threshold = progressToThresholdInSecond(progress);
|
||||||
|
customValueTextView.setText(threshold);
|
||||||
|
customProgressBar.setContentDescription(threshold);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStartTrackingTouch(SeekBar seekBar) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStopTrackingTouch(SeekBar seekBar) {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
initStateBasedOnThreshold(cannedValueRadioGroup, customRadioButton, customValueTextView,
|
||||||
|
customProgressBar);
|
||||||
|
});
|
||||||
|
|
||||||
|
final Window window = accessibilityKeyDialog.getWindow();
|
||||||
|
window.setType(TYPE_SYSTEM_DIALOG);
|
||||||
|
|
||||||
|
return accessibilityKeyDialog;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String progressToThresholdInSecond(int progress) {
|
||||||
|
return (double) progress * CUSTOM_PROGRESS_INTERVAL
|
||||||
|
/ MILLISECOND_IN_SECONDS + " " + TimeUnit.SECONDS.name().toLowerCase(
|
||||||
|
Locale.getDefault());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initStateBasedOnThreshold(RadioGroup cannedValueRadioGroup,
|
||||||
|
RadioButton customRadioButton, TextView customValueTextView,
|
||||||
|
SeekBar customProgressBar) {
|
||||||
|
int inputSettingKeysThreshold = getInputSettingKeysValue();
|
||||||
|
switch (inputSettingKeysThreshold) {
|
||||||
|
case 600 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_600);
|
||||||
|
case 400 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_400);
|
||||||
|
case 0, 200 -> cannedValueRadioGroup.check(R.id.input_setting_keys_value_200);
|
||||||
|
default -> {
|
||||||
|
customValueTextView.setText(
|
||||||
|
String.valueOf(
|
||||||
|
(double) inputSettingKeysThreshold / MILLISECOND_IN_SECONDS));
|
||||||
|
customProgressBar.setProgress(inputSettingKeysThreshold / CUSTOM_PROGRESS_INTERVAL);
|
||||||
|
customRadioButton.setChecked(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -35,7 +35,7 @@ import com.android.settingslib.widget.MainSwitchPreference;
|
|||||||
public class KeyboardAccessibilityMouseKeysController extends
|
public class KeyboardAccessibilityMouseKeysController extends
|
||||||
InputSettingPreferenceController implements
|
InputSettingPreferenceController implements
|
||||||
LifecycleObserver {
|
LifecycleObserver {
|
||||||
private static final String KEY_MOUSE_KEY = "accessibility_mouse_keys";
|
private static final String KEY_MOUSE_KEY = "keyboard_a11y_page_mouse_keys";
|
||||||
private static final String KEY_MOUSE_KEY_MAIN_PAGE = "mouse_keys_main_switch";
|
private static final String KEY_MOUSE_KEY_MAIN_PAGE = "mouse_keys_main_switch";
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
package com.android.settings.inputmethod;
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_CUSTOM_VALUE_CHANGE;
|
|
||||||
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_DISABLED;
|
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_DISABLED;
|
||||||
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_ENABLED;
|
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_ENABLED;
|
||||||
|
|
||||||
@@ -32,20 +31,19 @@ import androidx.lifecycle.LifecycleObserver;
|
|||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
import androidx.preference.PreferenceScreen;
|
import androidx.preference.PreferenceScreen;
|
||||||
|
|
||||||
import com.android.settings.R;
|
|
||||||
import com.android.settingslib.PrimarySwitchPreference;
|
import com.android.settingslib.PrimarySwitchPreference;
|
||||||
|
|
||||||
public class KeyboardAccessibilitySlowKeysController extends
|
public class KeyboardAccessibilitySlowKeysController extends
|
||||||
InputSettingPreferenceController implements
|
InputSettingPreferenceController implements
|
||||||
LifecycleObserver {
|
LifecycleObserver {
|
||||||
public static final int SLOW_KEYS_THRESHOLD = 500;
|
public static final int SLOW_KEYS_THRESHOLD = 500;
|
||||||
|
private static final String KEY_TAG = "slow_keys_dialog_tag";
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
private PrimarySwitchPreference mPrimarySwitchPreference;
|
private PrimarySwitchPreference mPrimarySwitchPreference;
|
||||||
|
|
||||||
public KeyboardAccessibilitySlowKeysController(@NonNull Context context, @NonNull String key) {
|
public KeyboardAccessibilitySlowKeysController(@NonNull Context context, @NonNull String key) {
|
||||||
super(context, key);
|
super(context, key);
|
||||||
constructDialog(context, R.string.slow_keys, R.string.slow_keys_summary);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -90,12 +88,11 @@ public class KeyboardAccessibilitySlowKeysController extends
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean handlePreferenceTreeClick(@NonNull Preference preference) {
|
public boolean handlePreferenceTreeClick(@NonNull Preference preference) {
|
||||||
if (!TextUtils.equals(preference.getKey(), getPreferenceKey())) {
|
if (!TextUtils.equals(preference.getKey(), getPreferenceKey())
|
||||||
|
|| mFragmentManager == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (mAlertDialog != null) {
|
KeyboardAccessibilitySlowKeysDialogFragment.getInstance().show(mFragmentManager, KEY_TAG);
|
||||||
mAlertDialog.show();
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,15 +100,4 @@ public class KeyboardAccessibilitySlowKeysController extends
|
|||||||
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
InputSettings.setAccessibilitySlowKeysThreshold(mContext, thresholdTimeMillis);
|
InputSettings.setAccessibilitySlowKeysThreshold(mContext, thresholdTimeMillis);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
|
||||||
mMetricsFeatureProvider.action(mContext,
|
|
||||||
ACTION_SLOW_KEYS_CUSTOM_VALUE_CHANGE, thresholdTimeMillis);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected int getInputSettingKeysValue() {
|
|
||||||
return InputSettings.getAccessibilitySlowKeysThreshold(mContext);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
|
import static android.app.settings.SettingsEnums.ACTION_SLOW_KEYS_CUSTOM_VALUE_CHANGE;
|
||||||
|
|
||||||
|
import android.hardware.input.InputSettings;
|
||||||
|
import android.os.Bundle;
|
||||||
|
|
||||||
|
import com.android.settings.R;
|
||||||
|
|
||||||
|
public class KeyboardAccessibilitySlowKeysDialogFragment extends
|
||||||
|
KeyboardAccessibilityKeysDialogFragment {
|
||||||
|
|
||||||
|
static KeyboardAccessibilitySlowKeysDialogFragment getInstance() {
|
||||||
|
final KeyboardAccessibilitySlowKeysDialogFragment result =
|
||||||
|
new KeyboardAccessibilitySlowKeysDialogFragment();
|
||||||
|
Bundle bundle = new Bundle();
|
||||||
|
bundle.putInt(EXTRA_TITLE_RES, R.string.slow_keys);
|
||||||
|
bundle.putInt(EXTRA_SUBTITLE_RES, R.string.slow_keys_summary);
|
||||||
|
bundle.putInt(EXTRA_SEEKBAR_CONTENT_DESCRIPTION,
|
||||||
|
R.string.input_setting_slow_keys_seekbar_desc);
|
||||||
|
result.setArguments(bundle);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void updateInputSettingKeysValue(int thresholdTimeMillis) {
|
||||||
|
InputSettings.setAccessibilitySlowKeysThreshold(getContext(), thresholdTimeMillis);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCustomValueUpdated(int thresholdTimeMillis) {
|
||||||
|
mMetricsFeatureProvider.action(getContext(),
|
||||||
|
ACTION_SLOW_KEYS_CUSTOM_VALUE_CHANGE, thresholdTimeMillis);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected int getInputSettingKeysValue() {
|
||||||
|
return InputSettings.getAccessibilitySlowKeysThreshold(getContext());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -51,6 +51,8 @@ public class PhysicalKeyboardA11yFragment extends DashboardFragment
|
|||||||
super.onAttach(context);
|
super.onAttach(context);
|
||||||
mInputManager = Preconditions.checkNotNull(getActivity()
|
mInputManager = Preconditions.checkNotNull(getActivity()
|
||||||
.getSystemService(InputManager.class));
|
.getSystemService(InputManager.class));
|
||||||
|
use(KeyboardAccessibilitySlowKeysController.class).setFragment(this /*parent*/);
|
||||||
|
use(KeyboardAccessibilityBounceKeysController.class).setFragment(this /*parent*/);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
package com.android.settings.network
|
package com.android.settings.network
|
||||||
|
|
||||||
import android.Manifest
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.net.wifi.WifiManager
|
import android.net.wifi.WifiManager
|
||||||
import android.provider.Settings.Secure.ADAPTIVE_CONNECTIVITY_ENABLED
|
import android.provider.Settings.Secure.ADAPTIVE_CONNECTIVITY_ENABLED
|
||||||
@@ -39,8 +38,7 @@ class AdaptiveConnectivityTogglePreference :
|
|||||||
|
|
||||||
override fun getReadPermissions(context: Context) = SettingsSecureStore.getReadPermissions()
|
override fun getReadPermissions(context: Context) = SettingsSecureStore.getReadPermissions()
|
||||||
|
|
||||||
override fun getWritePermissions(context: Context) =
|
override fun getWritePermissions(context: Context) = SettingsSecureStore.getWritePermissions()
|
||||||
SettingsSecureStore.getWritePermissions() and Manifest.permission.NETWORK_SETTINGS
|
|
||||||
|
|
||||||
override fun getReadPermit(context: Context, callingPid: Int, callingUid: Int) =
|
override fun getReadPermit(context: Context, callingPid: Int, callingUid: Int) =
|
||||||
ReadWritePermit.ALLOW
|
ReadWritePermit.ALLOW
|
||||||
|
|||||||
@@ -58,8 +58,6 @@ class MobileDataPreference :
|
|||||||
|
|
||||||
override fun getWritePermissions(context: Context) =
|
override fun getWritePermissions(context: Context) =
|
||||||
Permissions.allOf(
|
Permissions.allOf(
|
||||||
// SubscriptionManager.createForAllUserProfiles
|
|
||||||
Manifest.permission.INTERACT_ACROSS_PROFILES,
|
|
||||||
// TelephonyManager.setDataEnabledForReason
|
// TelephonyManager.setDataEnabledForReason
|
||||||
Manifest.permission.MODIFY_PHONE_STATE,
|
Manifest.permission.MODIFY_PHONE_STATE,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -165,9 +165,9 @@ public class RenameMobileNetworkDialogFragment extends InstrumentedDialogFragmen
|
|||||||
}
|
}
|
||||||
final CharSequence displayName = SubscriptionUtil.getUniqueSubscriptionDisplayName(
|
final CharSequence displayName = SubscriptionUtil.getUniqueSubscriptionDisplayName(
|
||||||
info, getContext());
|
info, getContext());
|
||||||
mNameView.setText(displayName);
|
|
||||||
if (!TextUtils.isEmpty(displayName)) {
|
if (!TextUtils.isEmpty(displayName)) {
|
||||||
mNameView.setSelection(displayName.length());
|
mNameView.setSelection(Math.min(displayName.length(),
|
||||||
|
getResources().getInteger(R.integer.sim_label_max_length)));
|
||||||
}
|
}
|
||||||
|
|
||||||
mColorSpinner = view.findViewById(R.id.color_spinner);
|
mColorSpinner = view.findViewById(R.id.color_spinner);
|
||||||
@@ -176,7 +176,7 @@ public class RenameMobileNetworkDialogFragment extends InstrumentedDialogFragmen
|
|||||||
mColorSpinner.setAdapter(adapter);
|
mColorSpinner.setAdapter(adapter);
|
||||||
mColorSpinner.setSelection(getSimColorIndex(info.getIconTint()));
|
mColorSpinner.setSelection(getSimColorIndex(info.getIconTint()));
|
||||||
|
|
||||||
if(Flags.isDualSimOnboardingEnabled()){
|
if (Flags.isDualSimOnboardingEnabled()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
# Default reviewers for this and subdirectories.
|
# Default reviewers for this and subdirectories.
|
||||||
aroederer@google.com
|
|
||||||
beverlyt@google.com
|
beverlyt@google.com
|
||||||
dsandler@android.com
|
dsandler@android.com
|
||||||
juliacr@google.com
|
juliacr@google.com
|
||||||
|
|||||||
@@ -95,8 +95,7 @@ public final class LockScreenSafetySource {
|
|||||||
new SafetySourceStatus.Builder(
|
new SafetySourceStatus.Builder(
|
||||||
context.getString(R.string.unlock_set_unlock_launch_picker_title),
|
context.getString(R.string.unlock_set_unlock_launch_picker_title),
|
||||||
lockScreenAllowedByAdmin
|
lockScreenAllowedByAdmin
|
||||||
? screenLockPreferenceDetailsUtils.getSummary(
|
? getScreenLockSummary(screenLockPreferenceDetailsUtils)
|
||||||
UserHandle.myUserId())
|
|
||||||
: context.getString(R.string.disabled_by_policy_title),
|
: context.getString(R.string.disabled_by_policy_title),
|
||||||
severityLevel)
|
severityLevel)
|
||||||
.setPendingIntent(lockScreenAllowedByAdmin ? pendingIntent : null)
|
.setPendingIntent(lockScreenAllowedByAdmin ? pendingIntent : null)
|
||||||
@@ -114,6 +113,12 @@ public final class LockScreenSafetySource {
|
|||||||
.setSafetySourceData(context, SAFETY_SOURCE_ID, safetySourceData, safetyEvent);
|
.setSafetySourceData(context, SAFETY_SOURCE_ID, safetySourceData, safetyEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static String getScreenLockSummary(
|
||||||
|
ScreenLockPreferenceDetailsUtils screenLockPreferenceDetailsUtils) {
|
||||||
|
String summary = screenLockPreferenceDetailsUtils.getSummary(UserHandle.myUserId());
|
||||||
|
return summary != null ? summary : "";
|
||||||
|
}
|
||||||
|
|
||||||
/** Notifies Safety Center of a change in lock screen settings. */
|
/** Notifies Safety Center of a change in lock screen settings. */
|
||||||
public static void onLockScreenChange(Context context) {
|
public static void onLockScreenChange(Context context) {
|
||||||
setSafetySourceData(
|
setSafetySourceData(
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.os.UserHandle;
|
|||||||
import android.os.UserManager;
|
import android.os.UserManager;
|
||||||
import android.os.storage.StorageManager;
|
import android.os.storage.StorageManager;
|
||||||
|
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
import androidx.annotation.StringRes;
|
import androidx.annotation.StringRes;
|
||||||
|
|
||||||
import com.android.internal.app.UnlaunchableAppActivity;
|
import com.android.internal.app.UnlaunchableAppActivity;
|
||||||
@@ -43,6 +44,7 @@ public class ScreenLockPreferenceDetailsUtils {
|
|||||||
|
|
||||||
private final int mUserId = UserHandle.myUserId();
|
private final int mUserId = UserHandle.myUserId();
|
||||||
private final Context mContext;
|
private final Context mContext;
|
||||||
|
@Nullable
|
||||||
private final LockPatternUtils mLockPatternUtils;
|
private final LockPatternUtils mLockPatternUtils;
|
||||||
private final int mProfileChallengeUserId;
|
private final int mProfileChallengeUserId;
|
||||||
private final UserManager mUm;
|
private final UserManager mUm;
|
||||||
@@ -85,7 +87,7 @@ public class ScreenLockPreferenceDetailsUtils {
|
|||||||
* Returns whether the lock pattern is secure.
|
* Returns whether the lock pattern is secure.
|
||||||
*/
|
*/
|
||||||
public boolean isLockPatternSecure() {
|
public boolean isLockPatternSecure() {
|
||||||
return mLockPatternUtils.isSecure(mUserId);
|
return mLockPatternUtils != null && mLockPatternUtils.isSecure(mUserId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -148,6 +150,7 @@ public class ScreenLockPreferenceDetailsUtils {
|
|||||||
// profile with unified challenge on FBE-enabled devices. Otherwise, vold would not be
|
// profile with unified challenge on FBE-enabled devices. Otherwise, vold would not be
|
||||||
// able to complete the operation due to the lack of (old) encryption key.
|
// able to complete the operation due to the lack of (old) encryption key.
|
||||||
if (mProfileChallengeUserId != UserHandle.USER_NULL
|
if (mProfileChallengeUserId != UserHandle.USER_NULL
|
||||||
|
&& mLockPatternUtils != null
|
||||||
&& !mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId)
|
&& !mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId)
|
||||||
&& StorageManager.isFileEncrypted()) {
|
&& StorageManager.isFileEncrypted()) {
|
||||||
if (mUm.isQuietModeEnabled(UserHandle.of(mProfileChallengeUserId))) {
|
if (mUm.isQuietModeEnabled(UserHandle.of(mProfileChallengeUserId))) {
|
||||||
@@ -166,8 +169,12 @@ public class ScreenLockPreferenceDetailsUtils {
|
|||||||
.toIntent();
|
.toIntent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
@StringRes
|
@StringRes
|
||||||
private Integer getSummaryResId(int userId) {
|
private Integer getSummaryResId(int userId) {
|
||||||
|
if (mLockPatternUtils == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
if (!mLockPatternUtils.isSecure(userId)) {
|
if (!mLockPatternUtils.isSecure(userId)) {
|
||||||
if (userId == mProfileChallengeUserId
|
if (userId == mProfileChallengeUserId
|
||||||
|| mLockPatternUtils.isLockScreenDisabled(userId)) {
|
|| mLockPatternUtils.isLockScreenDisabled(userId)) {
|
||||||
|
|||||||
@@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
package com.android.settings.service
|
package com.android.settings.service
|
||||||
|
|
||||||
|
import android.Manifest.permission.WRITE_SYSTEM_PREFERENCES
|
||||||
|
import android.app.AppOpsManager.OP_WRITE_SYSTEM_PREFERENCES
|
||||||
import android.os.Binder
|
import android.os.Binder
|
||||||
import android.os.OutcomeReceiver
|
import android.os.OutcomeReceiver
|
||||||
import android.service.settings.preferences.GetValueRequest
|
import android.service.settings.preferences.GetValueRequest
|
||||||
@@ -32,6 +34,7 @@ import com.android.settingslib.graph.PreferenceGetterApiHandler
|
|||||||
import com.android.settingslib.graph.PreferenceGetterFlags
|
import com.android.settingslib.graph.PreferenceGetterFlags
|
||||||
import com.android.settingslib.graph.PreferenceSetterApiHandler
|
import com.android.settingslib.graph.PreferenceSetterApiHandler
|
||||||
import com.android.settingslib.ipc.ApiPermissionChecker
|
import com.android.settingslib.ipc.ApiPermissionChecker
|
||||||
|
import com.android.settingslib.ipc.AppOpApiPermissionChecker
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.SupervisorJob
|
import kotlinx.coroutines.SupervisorJob
|
||||||
@@ -47,10 +50,15 @@ class PreferenceService : SettingsPreferenceService() {
|
|||||||
|
|
||||||
init {
|
init {
|
||||||
val metricsLogger = SettingsRemoteOpMetricsLogger()
|
val metricsLogger = SettingsRemoteOpMetricsLogger()
|
||||||
|
// PreferenceService specifies READ_SYSTEM_PREFERENCES permission in AndroidManifest.xml
|
||||||
getApiHandler =
|
getApiHandler =
|
||||||
PreferenceGetterApiHandler(1, ApiPermissionChecker.alwaysAllow(), metricsLogger)
|
PreferenceGetterApiHandler(1, ApiPermissionChecker.alwaysAllow(), metricsLogger)
|
||||||
setApiHandler =
|
setApiHandler =
|
||||||
PreferenceSetterApiHandler(2, ApiPermissionChecker.alwaysAllow(), metricsLogger)
|
PreferenceSetterApiHandler(
|
||||||
|
2,
|
||||||
|
AppOpApiPermissionChecker(OP_WRITE_SYSTEM_PREFERENCES, WRITE_SYSTEM_PREFERENCES),
|
||||||
|
metricsLogger,
|
||||||
|
)
|
||||||
graphApi =
|
graphApi =
|
||||||
GetPreferenceGraphApiHandler(3, ApiPermissionChecker.alwaysAllow(), metricsLogger)
|
GetPreferenceGraphApiHandler(3, ApiPermissionChecker.alwaysAllow(), metricsLogger)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -94,6 +94,7 @@ public class WifiCallingSettings extends SettingsPreferenceFragment
|
|||||||
@Override
|
@Override
|
||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||||
Bundle savedInstanceState) {
|
Bundle savedInstanceState) {
|
||||||
|
super.onCreateView(inflater, container, savedInstanceState);
|
||||||
if (MobileNetworkUtils.isMobileNetworkUserRestricted(getActivity())) {
|
if (MobileNetworkUtils.isMobileNetworkUserRestricted(getActivity())) {
|
||||||
return new ViewStub(getActivity());
|
return new ViewStub(getActivity());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -155,7 +155,7 @@ public class ContactsStorageSettingsTest {
|
|||||||
|
|
||||||
assertThat(deviceOnlyPreference.getTitle()).isEqualTo("Device only");
|
assertThat(deviceOnlyPreference.getTitle()).isEqualTo("Device only");
|
||||||
assertThat(deviceOnlyPreference.getSummary()).isEqualTo(
|
assertThat(deviceOnlyPreference.getSummary()).isEqualTo(
|
||||||
"New contacts won't be synced with an account");
|
"Contacts may not sync or be available on your other devices");
|
||||||
assertThat(deviceOnlyPreference.getOrder()).isEqualTo(999);
|
assertThat(deviceOnlyPreference.getOrder()).isEqualTo(999);
|
||||||
assertThat(mContactsStorageSettings.findPreference(
|
assertThat(mContactsStorageSettings.findPreference(
|
||||||
PREF_KEY_ACCOUNT_CATEGORY).getTitle()).isEqualTo("Where to save contacts");
|
PREF_KEY_ACCOUNT_CATEGORY).getTitle()).isEqualTo("Where to save contacts");
|
||||||
@@ -345,7 +345,8 @@ public class ContactsStorageSettingsTest {
|
|||||||
SelectorWithWidgetPreference simPreference = accountCategory.findPreference(
|
SelectorWithWidgetPreference simPreference = accountCategory.findPreference(
|
||||||
String.valueOf(SIM_ACCOUNT.hashCode()));
|
String.valueOf(SIM_ACCOUNT.hashCode()));
|
||||||
assertThat(simPreference.getTitle()).isEqualTo("SIM");
|
assertThat(simPreference.getTitle()).isEqualTo("SIM");
|
||||||
assertThat(simPreference.getSummary()).isEqualTo("SIM");
|
assertThat(simPreference.getSummary()).isEqualTo(
|
||||||
|
"Contacts may not sync or be available on your other devices");
|
||||||
assertThat(simPreference.getIcon()).isNotNull();
|
assertThat(simPreference.getIcon()).isNotNull();
|
||||||
assertThat(simPreference.isChecked()).isTrue();
|
assertThat(simPreference.isChecked()).isTrue();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -135,16 +135,20 @@ public class FingerprintSettingsFragmentTest {
|
|||||||
@Mock
|
@Mock
|
||||||
private Vibrator mVibrator;
|
private Vibrator mVibrator;
|
||||||
|
|
||||||
|
private FingerprintSettingsFeatureProvider mFingerprintSettingsFeatureProvider;
|
||||||
|
|
||||||
|
private FakeFeatureFactory mFakeFeatureFactory;
|
||||||
private FingerprintAuthenticateSidecar mFingerprintAuthenticateSidecar;
|
private FingerprintAuthenticateSidecar mFingerprintAuthenticateSidecar;
|
||||||
private FingerprintRemoveSidecar mFingerprintRemoveSidecar;
|
private FingerprintRemoveSidecar mFingerprintRemoveSidecar;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
ShadowUtils.setFingerprintManager(mFingerprintManager);
|
ShadowUtils.setFingerprintManager(mFingerprintManager);
|
||||||
FakeFeatureFactory.setupForTest();
|
mFakeFeatureFactory = FakeFeatureFactory.setupForTest();
|
||||||
|
|
||||||
mContext = spy(ApplicationProvider.getApplicationContext());
|
mContext = spy(ApplicationProvider.getApplicationContext());
|
||||||
mFragment = spy(new FingerprintSettingsFragment());
|
mFragment = spy(new FingerprintSettingsFragment());
|
||||||
|
mFingerprintSettingsFeatureProvider = new FingerprintSettingsFeatureProvider();
|
||||||
doReturn(mContext).when(mFragment).getContext();
|
doReturn(mContext).when(mFragment).getContext();
|
||||||
doReturn(mBiometricManager).when(mContext).getSystemService(BiometricManager.class);
|
doReturn(mBiometricManager).when(mContext).getSystemService(BiometricManager.class);
|
||||||
doReturn(true).when(mFingerprintManager).isHardwareDetected();
|
doReturn(true).when(mFingerprintManager).isHardwareDetected();
|
||||||
@@ -152,6 +156,9 @@ public class FingerprintSettingsFragmentTest {
|
|||||||
when(mBiometricManager.canAuthenticate(PRIMARY_USER_ID,
|
when(mBiometricManager.canAuthenticate(PRIMARY_USER_ID,
|
||||||
BiometricManager.Authenticators.IDENTITY_CHECK))
|
BiometricManager.Authenticators.IDENTITY_CHECK))
|
||||||
.thenReturn(BiometricManager.BIOMETRIC_ERROR_HW_UNAVAILABLE);
|
.thenReturn(BiometricManager.BIOMETRIC_ERROR_HW_UNAVAILABLE);
|
||||||
|
when(mFakeFeatureFactory.getFingerprintFeatureProvider()
|
||||||
|
.getFingerprintSettingsFeatureProvider())
|
||||||
|
.thenReturn(mFingerprintSettingsFeatureProvider);
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
|
|||||||
@@ -98,30 +98,44 @@ public class BluetoothDetailsAmbientVolumePreferenceControllerTest extends
|
|||||||
@Test
|
@Test
|
||||||
public void isAvailable_notHearingDevice_returnFalse() {
|
public void isAvailable_notHearingDevice_returnFalse() {
|
||||||
when(mCachedDevice.isHearingDevice()).thenReturn(false);
|
when(mCachedDevice.isHearingDevice()).thenReturn(false);
|
||||||
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
assertThat(mController.isAvailable()).isFalse();
|
assertThat(mController.isAvailable()).isFalse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void isAvailable_isHearingDeviceAndNotSupportVcp_returnFalse() {
|
public void isAvailable_notSupportVcp_returnFalse() {
|
||||||
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
when(mCachedDevice.getProfiles()).thenReturn(List.of());
|
when(mCachedDevice.getProfiles()).thenReturn(List.of());
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
assertThat(mController.isAvailable()).isFalse();
|
assertThat(mController.isAvailable()).isFalse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void isAvailable_isHearingDeviceAndSupportVcp_returnTrue() {
|
public void isAvailable_noValidAmbientControlPoint_returnFalse() {
|
||||||
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(false);
|
||||||
|
|
||||||
|
assertThat(mController.isAvailable()).isFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void isAvailable_isHearingDevice_supportVcp_validAmbientControl_returnTrue() {
|
||||||
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
assertThat(mController.isAvailable()).isTrue();
|
assertThat(mController.isAvailable()).isTrue();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void refresh_isHearingDeviceAndNotSupportVcp_verifyUiControllerNoRefresh() {
|
public void refresh_notHearingDevice_verifyUiControllerNotRefresh() {
|
||||||
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
when(mCachedDevice.isHearingDevice()).thenReturn(false);
|
||||||
when(mCachedDevice.getProfiles()).thenReturn(List.of());
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
mController.refresh();
|
mController.refresh();
|
||||||
|
|
||||||
@@ -129,9 +143,32 @@ public class BluetoothDetailsAmbientVolumePreferenceControllerTest extends
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void refresh_isHearingDeviceAndSupportVcp_verifyUiControllerRefresh() {
|
public void refresh_notSupportVcp_verifyUiControllerNotRefresh() {
|
||||||
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
|
when(mCachedDevice.getProfiles()).thenReturn(List.of());
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
|
mController.refresh();
|
||||||
|
|
||||||
|
verify(mUiController, never()).refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void refresh_noValidAmbientControl_verifyUiControllerNotRefresh() {
|
||||||
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(false);
|
||||||
|
|
||||||
|
mController.refresh();
|
||||||
|
|
||||||
|
verify(mUiController, never()).refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void refresh_isHearingDevice_supportVcp_validAmbientControl_verifyUiControllerRefresh() {
|
||||||
|
when(mCachedDevice.isHearingDevice()).thenReturn(true);
|
||||||
|
when(mCachedDevice.getProfiles()).thenReturn(List.of(mVolumeControlProfile));
|
||||||
|
when(mUiController.isAmbientControlAvailable()).thenReturn(true);
|
||||||
|
|
||||||
mController.refresh();
|
mController.refresh();
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ package com.android.settings.bluetooth;
|
|||||||
|
|
||||||
import static android.bluetooth.BluetoothDevice.DEVICE_TYPE_LE;
|
import static android.bluetooth.BluetoothDevice.DEVICE_TYPE_LE;
|
||||||
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_SPEAKER;
|
import static android.media.AudioManager.AUDIO_DEVICE_CATEGORY_SPEAKER;
|
||||||
import static android.media.audio.Flags.automaticBtDeviceType;
|
|
||||||
|
|
||||||
import static com.google.common.truth.Truth.assertThat;
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
@@ -98,12 +97,7 @@ public class BluetoothDetailsAudioDeviceTypeControllerTest extends
|
|||||||
@Test
|
@Test
|
||||||
public void createAudioDeviceTypePreference_btDeviceIsCategorized_checkSelection() {
|
public void createAudioDeviceTypePreference_btDeviceIsCategorized_checkSelection() {
|
||||||
int deviceType = AUDIO_DEVICE_CATEGORY_SPEAKER;
|
int deviceType = AUDIO_DEVICE_CATEGORY_SPEAKER;
|
||||||
if (automaticBtDeviceType()) {
|
|
||||||
when(mAudioManager.getBluetoothAudioDeviceCategory(MAC_ADDRESS)).thenReturn(deviceType);
|
when(mAudioManager.getBluetoothAudioDeviceCategory(MAC_ADDRESS)).thenReturn(deviceType);
|
||||||
} else {
|
|
||||||
when(mAudioManager.getBluetoothAudioDeviceCategory_legacy(MAC_ADDRESS, /*isBle=*/
|
|
||||||
true)).thenReturn(deviceType);
|
|
||||||
}
|
|
||||||
|
|
||||||
mController.createAudioDeviceTypePreference(mContext);
|
mController.createAudioDeviceTypePreference(mContext);
|
||||||
mAudioDeviceTypePref = mController.getAudioDeviceTypePreference();
|
mAudioDeviceTypePref = mController.getAudioDeviceTypePreference();
|
||||||
@@ -118,12 +112,7 @@ public class BluetoothDetailsAudioDeviceTypeControllerTest extends
|
|||||||
|
|
||||||
mController.onPreferenceChange(mAudioDeviceTypePref, Integer.toString(deviceType));
|
mController.onPreferenceChange(mAudioDeviceTypePref, Integer.toString(deviceType));
|
||||||
|
|
||||||
if (automaticBtDeviceType()) {
|
|
||||||
verify(mAudioManager).setBluetoothAudioDeviceCategory(eq(MAC_ADDRESS),
|
verify(mAudioManager).setBluetoothAudioDeviceCategory(eq(MAC_ADDRESS),
|
||||||
eq(AUDIO_DEVICE_CATEGORY_SPEAKER));
|
eq(AUDIO_DEVICE_CATEGORY_SPEAKER));
|
||||||
} else {
|
|
||||||
verify(mAudioManager).setBluetoothAudioDeviceCategory_legacy(eq(MAC_ADDRESS), eq(true),
|
|
||||||
eq(AUDIO_DEVICE_CATEGORY_SPEAKER));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ import org.robolectric.annotation.Config;
|
|||||||
import org.robolectric.shadow.api.Shadow;
|
import org.robolectric.shadow.api.Shadow;
|
||||||
import org.robolectric.shadows.androidx.fragment.FragmentController;
|
import org.robolectric.shadows.androidx.fragment.FragmentController;
|
||||||
|
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
|
||||||
@@ -263,6 +264,18 @@ public class AudioSharingDialogFragmentTest {
|
|||||||
assertThat(dialog).isNotNull();
|
assertThat(dialog).isNotNull();
|
||||||
ImageView image = dialog.findViewById(R.id.description_image);
|
ImageView image = dialog.findViewById(R.id.description_image);
|
||||||
assertThat(image).isNotNull();
|
assertThat(image).isNotNull();
|
||||||
|
TextView text = dialog.findViewById(R.id.description_text);
|
||||||
|
assertThat(text).isNotNull();
|
||||||
|
assertThat(METADATA).isNotNull();
|
||||||
|
assertThat(text.getText().toString()).isEqualTo(
|
||||||
|
mParent.getString(R.string.audio_sharing_dialog_qr_code_content,
|
||||||
|
METADATA.getBroadcastName(), new String(
|
||||||
|
METADATA.getBroadcastCode(),
|
||||||
|
StandardCharsets.UTF_8)));
|
||||||
|
TextView textBottom = dialog.findViewById(R.id.description_text_2);
|
||||||
|
assertThat(textBottom).isNotNull();
|
||||||
|
assertThat(textBottom.getText().toString()).isEqualTo(
|
||||||
|
mParent.getString(R.string.audio_sharing_dialog_pair_new_device_content));
|
||||||
Button cancelBtn = dialog.findViewById(R.id.negative_btn);
|
Button cancelBtn = dialog.findViewById(R.id.negative_btn);
|
||||||
assertThat(cancelBtn).isNotNull();
|
assertThat(cancelBtn).isNotNull();
|
||||||
cancelBtn.performClick();
|
cancelBtn.performClick();
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ import android.app.NotificationManager;
|
|||||||
import android.app.settings.SettingsEnums;
|
import android.app.settings.SettingsEnums;
|
||||||
import android.bluetooth.BluetoothAdapter;
|
import android.bluetooth.BluetoothAdapter;
|
||||||
import android.bluetooth.BluetoothDevice;
|
import android.bluetooth.BluetoothDevice;
|
||||||
|
import android.bluetooth.BluetoothLeBroadcastReceiveState;
|
||||||
import android.bluetooth.BluetoothProfile;
|
import android.bluetooth.BluetoothProfile;
|
||||||
import android.bluetooth.BluetoothStatusCodes;
|
import android.bluetooth.BluetoothStatusCodes;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
@@ -86,6 +87,7 @@ import org.robolectric.shadow.api.Shadow;
|
|||||||
import org.robolectric.util.ReflectionHelpers;
|
import org.robolectric.util.ReflectionHelpers;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
@RunWith(RobolectricTestRunner.class)
|
@RunWith(RobolectricTestRunner.class)
|
||||||
@@ -99,11 +101,13 @@ import java.util.Set;
|
|||||||
public class AudioStreamMediaServiceTest {
|
public class AudioStreamMediaServiceTest {
|
||||||
@Rule public final MockitoRule mMockitoRule = MockitoJUnit.rule();
|
@Rule public final MockitoRule mMockitoRule = MockitoJUnit.rule();
|
||||||
@Rule public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
@Rule public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
||||||
|
private static final String DEVICE_ADDRESS = "00:A1:A1:A1:A1:A1";
|
||||||
private static final String CHANNEL_ID = "bluetooth_notification_channel";
|
private static final String CHANNEL_ID = "bluetooth_notification_channel";
|
||||||
private static final String DEVICE_NAME = "name";
|
private static final String DEVICE_NAME = "name";
|
||||||
@Mock private Resources mResources;
|
@Mock private Resources mResources;
|
||||||
@Mock private LocalBluetoothManager mLocalBtManager;
|
@Mock private LocalBluetoothManager mLocalBtManager;
|
||||||
@Mock private LocalBluetoothLeBroadcastAssistant mLeBroadcastAssistant;
|
@Mock private LocalBluetoothLeBroadcastAssistant mLeBroadcastAssistant;
|
||||||
|
@Mock private BluetoothLeBroadcastReceiveState mBroadcastReceiveState;
|
||||||
@Mock private AudioStreamsHelper mAudioStreamsHelper;
|
@Mock private AudioStreamsHelper mAudioStreamsHelper;
|
||||||
@Mock private NotificationManager mNotificationManager;
|
@Mock private NotificationManager mNotificationManager;
|
||||||
@Mock private MediaSessionManager mMediaSessionManager;
|
@Mock private MediaSessionManager mMediaSessionManager;
|
||||||
@@ -304,6 +308,63 @@ public class AudioStreamMediaServiceTest {
|
|||||||
verify(mAudioStreamMediaService).stopSelf();
|
verify(mAudioStreamMediaService).stopSelf();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void assistantCallback_onReceiveStateChanged_connected_doNothing() {
|
||||||
|
mSetFlagsRule.enableFlags(Flags.FLAG_AUDIO_SHARING_HYSTERESIS_MODE_FIX);
|
||||||
|
mSetFlagsRule.enableFlags(Flags.FLAG_ENABLE_LE_AUDIO_SHARING);
|
||||||
|
|
||||||
|
mAudioStreamMediaService.onCreate();
|
||||||
|
mAudioStreamMediaService.onStartCommand(setupIntent(), /* flags= */ 0, /* startId= */ 0);
|
||||||
|
|
||||||
|
assertThat(mAudioStreamMediaService.mBroadcastAssistantCallback).isNotNull();
|
||||||
|
List<Long> bisSyncState = new ArrayList<>();
|
||||||
|
bisSyncState.add(1L);
|
||||||
|
when(mBroadcastReceiveState.getBisSyncState()).thenReturn(bisSyncState);
|
||||||
|
when(mDevice.getAddress()).thenReturn(DEVICE_ADDRESS);
|
||||||
|
when(mBroadcastReceiveState.getSourceDevice()).thenReturn(mDevice);
|
||||||
|
|
||||||
|
mAudioStreamMediaService.mBroadcastAssistantCallback.onReceiveStateChanged(
|
||||||
|
mDevice, /* sourceId= */ 0, /* state= */ mBroadcastReceiveState);
|
||||||
|
|
||||||
|
verify(mNotificationManager, never()).notify(anyInt(), any());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void assistantCallback_onReceiveStateChanged_hysteresis_updateNotification() {
|
||||||
|
mSetFlagsRule.enableFlags(Flags.FLAG_AUDIO_SHARING_HYSTERESIS_MODE_FIX);
|
||||||
|
mSetFlagsRule.enableFlags(Flags.FLAG_ENABLE_LE_AUDIO_SHARING);
|
||||||
|
|
||||||
|
mAudioStreamMediaService.onCreate();
|
||||||
|
mAudioStreamMediaService.onStartCommand(setupIntent(), /* flags= */ 0, /* startId= */ 0);
|
||||||
|
|
||||||
|
assertThat(mAudioStreamMediaService.mBroadcastAssistantCallback).isNotNull();
|
||||||
|
when(mBroadcastReceiveState.getBisSyncState()).thenReturn(new ArrayList<>());
|
||||||
|
when(mDevice.getAddress()).thenReturn(DEVICE_ADDRESS);
|
||||||
|
when(mBroadcastReceiveState.getSourceDevice()).thenReturn(mDevice);
|
||||||
|
|
||||||
|
mAudioStreamMediaService.mBroadcastAssistantCallback.onReceiveStateChanged(
|
||||||
|
mDevice, /* sourceId= */ 0, /* state= */ mBroadcastReceiveState);
|
||||||
|
|
||||||
|
verify(mNotificationManager).notify(anyInt(), any());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void assistantCallback_onReceiveStateChanged_hysteresis_flagOff_doNothing() {
|
||||||
|
mSetFlagsRule.disableFlags(Flags.FLAG_AUDIO_SHARING_HYSTERESIS_MODE_FIX);
|
||||||
|
mSetFlagsRule.enableFlags(Flags.FLAG_ENABLE_LE_AUDIO_SHARING);
|
||||||
|
|
||||||
|
mAudioStreamMediaService.onCreate();
|
||||||
|
mAudioStreamMediaService.onStartCommand(setupIntent(), /* flags= */ 0, /* startId= */ 0);
|
||||||
|
|
||||||
|
assertThat(mAudioStreamMediaService.mBroadcastAssistantCallback).isNotNull();
|
||||||
|
mAudioStreamMediaService.mBroadcastAssistantCallback.onReceiveStateChanged(
|
||||||
|
mDevice, /* sourceId= */ 0, /* state= */ mBroadcastReceiveState);
|
||||||
|
|
||||||
|
verify(mBroadcastReceiveState, never()).getBisSyncState();
|
||||||
|
verify(mBroadcastReceiveState, never()).getSourceDevice();
|
||||||
|
verify(mNotificationManager, never()).notify(anyInt(), any());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void bluetoothCallback_onBluetoothOff_stopSelf() {
|
public void bluetoothCallback_onBluetoothOff_stopSelf() {
|
||||||
mAudioStreamMediaService.onCreate();
|
mAudioStreamMediaService.onCreate();
|
||||||
|
|||||||
@@ -18,6 +18,9 @@ package com.android.settings.inputmethod;
|
|||||||
|
|
||||||
import static com.google.common.truth.Truth.assertThat;
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import static org.mockito.ArgumentMatchers.any;
|
||||||
|
import static org.mockito.ArgumentMatchers.anyString;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
@@ -25,12 +28,12 @@ import android.hardware.input.InputSettings;
|
|||||||
import android.platform.test.annotations.DisableFlags;
|
import android.platform.test.annotations.DisableFlags;
|
||||||
import android.platform.test.annotations.EnableFlags;
|
import android.platform.test.annotations.EnableFlags;
|
||||||
import android.platform.test.flag.junit.SetFlagsRule;
|
import android.platform.test.flag.junit.SetFlagsRule;
|
||||||
import android.widget.RadioGroup;
|
|
||||||
|
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.fragment.app.FragmentManager;
|
||||||
|
import androidx.fragment.app.FragmentTransaction;
|
||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
|
|
||||||
import com.android.settings.R;
|
|
||||||
import com.android.settings.core.BasePreferenceController;
|
import com.android.settings.core.BasePreferenceController;
|
||||||
import com.android.settings.keyboard.Flags;
|
import com.android.settings.keyboard.Flags;
|
||||||
import com.android.settings.testutils.shadow.ShadowAlertDialogCompat;
|
import com.android.settings.testutils.shadow.ShadowAlertDialogCompat;
|
||||||
@@ -45,10 +48,13 @@ import org.mockito.junit.MockitoRule;
|
|||||||
import org.robolectric.RobolectricTestRunner;
|
import org.robolectric.RobolectricTestRunner;
|
||||||
import org.robolectric.RuntimeEnvironment;
|
import org.robolectric.RuntimeEnvironment;
|
||||||
import org.robolectric.annotation.Config;
|
import org.robolectric.annotation.Config;
|
||||||
import org.robolectric.shadows.ShadowLooper;
|
import org.robolectric.annotation.Implementation;
|
||||||
|
import org.robolectric.annotation.Implements;
|
||||||
|
|
||||||
@RunWith(RobolectricTestRunner.class)
|
@RunWith(RobolectricTestRunner.class)
|
||||||
@Config(shadows = {
|
@Config(shadows = {
|
||||||
|
KeyboardAccessibilityBounceKeysControllerTest
|
||||||
|
.ShadowKeyboardAccessibilityBounceKeysDialogFragment.class,
|
||||||
com.android.settings.testutils.shadow.ShadowFragment.class,
|
com.android.settings.testutils.shadow.ShadowFragment.class,
|
||||||
ShadowAlertDialogCompat.class,
|
ShadowAlertDialogCompat.class,
|
||||||
})
|
})
|
||||||
@@ -60,6 +66,15 @@ public class KeyboardAccessibilityBounceKeysControllerTest {
|
|||||||
private static final String PREFERENCE_KEY = "keyboard_a11y_page_bounce_keys";
|
private static final String PREFERENCE_KEY = "keyboard_a11y_page_bounce_keys";
|
||||||
@Mock
|
@Mock
|
||||||
private Preference mPreference;
|
private Preference mPreference;
|
||||||
|
@Mock
|
||||||
|
private Fragment mFragment;
|
||||||
|
@Mock
|
||||||
|
private FragmentManager mFragmentManager;
|
||||||
|
@Mock
|
||||||
|
private FragmentTransaction mFragmentTransaction;
|
||||||
|
@Mock
|
||||||
|
private KeyboardAccessibilityBounceKeysDialogFragment
|
||||||
|
mKeyboardAccessibilityBounceKeysDialogFragment;
|
||||||
private Context mContext;
|
private Context mContext;
|
||||||
private KeyboardAccessibilityBounceKeysController mKeyboardAccessibilityBounceKeysController;
|
private KeyboardAccessibilityBounceKeysController mKeyboardAccessibilityBounceKeysController;
|
||||||
|
|
||||||
@@ -71,6 +86,11 @@ public class KeyboardAccessibilityBounceKeysControllerTest {
|
|||||||
mContext,
|
mContext,
|
||||||
PREFERENCE_KEY);
|
PREFERENCE_KEY);
|
||||||
when(mPreference.getKey()).thenReturn(PREFERENCE_KEY);
|
when(mPreference.getKey()).thenReturn(PREFERENCE_KEY);
|
||||||
|
when(mFragment.getParentFragmentManager()).thenReturn(mFragmentManager);
|
||||||
|
when(mFragmentManager.beginTransaction()).thenReturn(mFragmentTransaction);
|
||||||
|
mKeyboardAccessibilityBounceKeysController.setFragment(mFragment);
|
||||||
|
ShadowKeyboardAccessibilityBounceKeysDialogFragment.setInstance(
|
||||||
|
mKeyboardAccessibilityBounceKeysDialogFragment);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -107,23 +127,25 @@ public class KeyboardAccessibilityBounceKeysControllerTest {
|
|||||||
public void handlePreferenceTreeClick_dialogShows() {
|
public void handlePreferenceTreeClick_dialogShows() {
|
||||||
mKeyboardAccessibilityBounceKeysController.handlePreferenceTreeClick(mPreference);
|
mKeyboardAccessibilityBounceKeysController.handlePreferenceTreeClick(mPreference);
|
||||||
|
|
||||||
AlertDialog alertDialog = ShadowAlertDialogCompat.getLatestAlertDialog();
|
verify(mKeyboardAccessibilityBounceKeysDialogFragment).show(any(FragmentManager.class),
|
||||||
|
anyString());
|
||||||
assertThat(alertDialog.isShowing()).isTrue();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
/**
|
||||||
public void handlePreferenceTreeClick_performClickOn200_updatesBounceKeysThreshold() {
|
* Note: Actually, shadow of KeyboardAccessibilitySlowKeysDialogFragment will not be used.
|
||||||
mKeyboardAccessibilityBounceKeysController.handlePreferenceTreeClick(mPreference);
|
* Instance that returned with {@link #getInstance} should be set with {@link #setInstance}
|
||||||
AlertDialog alertDialog = ShadowAlertDialogCompat.getLatestAlertDialog();
|
*/
|
||||||
RadioGroup radioGroup = alertDialog.findViewById(R.id.input_setting_keys_value_group);
|
@Implements(KeyboardAccessibilityBounceKeysDialogFragment.class)
|
||||||
radioGroup.check(R.id.input_setting_keys_value_200);
|
public static class ShadowKeyboardAccessibilityBounceKeysDialogFragment {
|
||||||
|
static KeyboardAccessibilityBounceKeysDialogFragment sInstance = null;
|
||||||
|
|
||||||
alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick();
|
@Implementation
|
||||||
ShadowLooper.idleMainLooper();
|
protected static KeyboardAccessibilityBounceKeysDialogFragment getInstance() {
|
||||||
|
return sInstance;
|
||||||
|
}
|
||||||
|
|
||||||
assertThat(alertDialog.isShowing()).isFalse();
|
public static void setInstance(KeyboardAccessibilityBounceKeysDialogFragment instance) {
|
||||||
int threshold = InputSettings.getAccessibilityBounceKeysThreshold(mContext);
|
sInstance = instance;
|
||||||
assertThat(threshold).isEqualTo(200);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
|
import static com.android.settings.inputmethod.KeyboardAccessibilityKeysDialogFragment.EXTRA_SUBTITLE_RES;
|
||||||
|
import static com.android.settings.inputmethod.KeyboardAccessibilityKeysDialogFragment.EXTRA_TITLE_RES;
|
||||||
|
|
||||||
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.hardware.input.InputSettings;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.widget.RadioGroup;
|
||||||
|
|
||||||
|
import androidx.fragment.app.testing.FragmentScenario;
|
||||||
|
import androidx.lifecycle.Lifecycle;
|
||||||
|
import androidx.test.core.app.ApplicationProvider;
|
||||||
|
|
||||||
|
import com.android.settings.R;
|
||||||
|
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.robolectric.RobolectricTestRunner;
|
||||||
|
import org.robolectric.shadows.ShadowLooper;
|
||||||
|
|
||||||
|
@RunWith(RobolectricTestRunner.class)
|
||||||
|
public class KeyboardAccessibilityBounceKeysDialogFragmentTest {
|
||||||
|
private AlertDialog mAlertDialog;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() {
|
||||||
|
Bundle bundle = new Bundle();
|
||||||
|
bundle.putInt(EXTRA_TITLE_RES, R.string.bounce_keys_dialog_title);
|
||||||
|
bundle.putInt(EXTRA_SUBTITLE_RES, R.string.bounce_keys_dialog_subtitle);
|
||||||
|
|
||||||
|
FragmentScenario<KeyboardAccessibilityBounceKeysDialogFragment> mFragmentScenario =
|
||||||
|
FragmentScenario.launch(
|
||||||
|
KeyboardAccessibilityBounceKeysDialogFragment.class,
|
||||||
|
bundle,
|
||||||
|
R.style.Theme_AlertDialog_SettingsLib,
|
||||||
|
Lifecycle.State.INITIALIZED);
|
||||||
|
mFragmentScenario.moveToState(Lifecycle.State.RESUMED);
|
||||||
|
|
||||||
|
mFragmentScenario.onFragment(fragment -> {
|
||||||
|
assertThat(fragment.getDialog()).isNotNull();
|
||||||
|
assertThat(fragment.requireDialog().isShowing()).isTrue();
|
||||||
|
assertThat(fragment.requireDialog()).isInstanceOf(AlertDialog.class);
|
||||||
|
mAlertDialog = (AlertDialog) fragment.requireDialog();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void handlePreferenceTreeClick_performClickOn200_updatesBounceKeysThreshold() {
|
||||||
|
assertThat(mAlertDialog.isShowing()).isTrue();
|
||||||
|
RadioGroup radioGroup = mAlertDialog.findViewById(R.id.input_setting_keys_value_group);
|
||||||
|
radioGroup.check(R.id.input_setting_keys_value_200);
|
||||||
|
|
||||||
|
mAlertDialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick();
|
||||||
|
ShadowLooper.idleMainLooper();
|
||||||
|
|
||||||
|
assertThat(mAlertDialog.isShowing()).isFalse();
|
||||||
|
int threshold = InputSettings.getAccessibilityBounceKeysThreshold(
|
||||||
|
ApplicationProvider.getApplicationContext());
|
||||||
|
assertThat(threshold).isEqualTo(200);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,6 +18,9 @@ package com.android.settings.inputmethod;
|
|||||||
|
|
||||||
import static com.google.common.truth.Truth.assertThat;
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import static org.mockito.ArgumentMatchers.any;
|
||||||
|
import static org.mockito.ArgumentMatchers.anyString;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
@@ -25,12 +28,12 @@ import android.hardware.input.InputSettings;
|
|||||||
import android.platform.test.annotations.DisableFlags;
|
import android.platform.test.annotations.DisableFlags;
|
||||||
import android.platform.test.annotations.EnableFlags;
|
import android.platform.test.annotations.EnableFlags;
|
||||||
import android.platform.test.flag.junit.SetFlagsRule;
|
import android.platform.test.flag.junit.SetFlagsRule;
|
||||||
import android.widget.RadioGroup;
|
|
||||||
|
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.fragment.app.FragmentManager;
|
||||||
|
import androidx.fragment.app.FragmentTransaction;
|
||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
|
|
||||||
import com.android.settings.R;
|
|
||||||
import com.android.settings.core.BasePreferenceController;
|
import com.android.settings.core.BasePreferenceController;
|
||||||
import com.android.settings.keyboard.Flags;
|
import com.android.settings.keyboard.Flags;
|
||||||
import com.android.settings.testutils.shadow.ShadowAlertDialogCompat;
|
import com.android.settings.testutils.shadow.ShadowAlertDialogCompat;
|
||||||
@@ -45,10 +48,13 @@ import org.mockito.junit.MockitoRule;
|
|||||||
import org.robolectric.RobolectricTestRunner;
|
import org.robolectric.RobolectricTestRunner;
|
||||||
import org.robolectric.RuntimeEnvironment;
|
import org.robolectric.RuntimeEnvironment;
|
||||||
import org.robolectric.annotation.Config;
|
import org.robolectric.annotation.Config;
|
||||||
import org.robolectric.shadows.ShadowLooper;
|
import org.robolectric.annotation.Implementation;
|
||||||
|
import org.robolectric.annotation.Implements;
|
||||||
|
|
||||||
@RunWith(RobolectricTestRunner.class)
|
@RunWith(RobolectricTestRunner.class)
|
||||||
@Config(shadows = {
|
@Config(shadows = {
|
||||||
|
KeyboardAccessibilitySlowKeysControllerTest
|
||||||
|
.ShadowKeyboardAccessibilitySlowKeysDialogFragment.class,
|
||||||
com.android.settings.testutils.shadow.ShadowFragment.class,
|
com.android.settings.testutils.shadow.ShadowFragment.class,
|
||||||
ShadowAlertDialogCompat.class,
|
ShadowAlertDialogCompat.class,
|
||||||
})
|
})
|
||||||
@@ -60,6 +66,15 @@ public class KeyboardAccessibilitySlowKeysControllerTest {
|
|||||||
private static final String PREFERENCE_KEY = "keyboard_a11y_page_slow_keys";
|
private static final String PREFERENCE_KEY = "keyboard_a11y_page_slow_keys";
|
||||||
@Mock
|
@Mock
|
||||||
private Preference mPreference;
|
private Preference mPreference;
|
||||||
|
@Mock
|
||||||
|
private Fragment mFragment;
|
||||||
|
@Mock
|
||||||
|
private FragmentManager mFragmentManager;
|
||||||
|
@Mock
|
||||||
|
private FragmentTransaction mFragmentTransaction;
|
||||||
|
@Mock
|
||||||
|
private KeyboardAccessibilitySlowKeysDialogFragment
|
||||||
|
mKeyboardAccessibilitySlowKeysDialogFragment;
|
||||||
private Context mContext;
|
private Context mContext;
|
||||||
private KeyboardAccessibilitySlowKeysController mKeyboardAccessibilitySlowKeysController;
|
private KeyboardAccessibilitySlowKeysController mKeyboardAccessibilitySlowKeysController;
|
||||||
|
|
||||||
@@ -71,6 +86,11 @@ public class KeyboardAccessibilitySlowKeysControllerTest {
|
|||||||
mContext,
|
mContext,
|
||||||
PREFERENCE_KEY);
|
PREFERENCE_KEY);
|
||||||
when(mPreference.getKey()).thenReturn(PREFERENCE_KEY);
|
when(mPreference.getKey()).thenReturn(PREFERENCE_KEY);
|
||||||
|
when(mFragment.getParentFragmentManager()).thenReturn(mFragmentManager);
|
||||||
|
when(mFragmentManager.beginTransaction()).thenReturn(mFragmentTransaction);
|
||||||
|
mKeyboardAccessibilitySlowKeysController.setFragment(mFragment);
|
||||||
|
ShadowKeyboardAccessibilitySlowKeysDialogFragment.setInstance(
|
||||||
|
mKeyboardAccessibilitySlowKeysDialogFragment);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -107,23 +127,25 @@ public class KeyboardAccessibilitySlowKeysControllerTest {
|
|||||||
public void handlePreferenceTreeClick_dialogShows() {
|
public void handlePreferenceTreeClick_dialogShows() {
|
||||||
mKeyboardAccessibilitySlowKeysController.handlePreferenceTreeClick(mPreference);
|
mKeyboardAccessibilitySlowKeysController.handlePreferenceTreeClick(mPreference);
|
||||||
|
|
||||||
AlertDialog alertDialog = ShadowAlertDialogCompat.getLatestAlertDialog();
|
verify(mKeyboardAccessibilitySlowKeysDialogFragment).show(any(FragmentManager.class),
|
||||||
|
anyString());
|
||||||
assertThat(alertDialog.isShowing()).isTrue();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
/**
|
||||||
public void handlePreferenceTreeClick_performClickOn200_updatesSlowKeysThreshold() {
|
* Note: Actually, shadow of KeyboardAccessibilitySlowKeysDialogFragment will not be used.
|
||||||
mKeyboardAccessibilitySlowKeysController.handlePreferenceTreeClick(mPreference);
|
* Instance that returned with {@link #getInstance} should be set with {@link #setInstance}
|
||||||
AlertDialog alertDialog = ShadowAlertDialogCompat.getLatestAlertDialog();
|
*/
|
||||||
RadioGroup radioGroup = alertDialog.findViewById(R.id.input_setting_keys_value_group);
|
@Implements(KeyboardAccessibilitySlowKeysDialogFragment.class)
|
||||||
radioGroup.check(R.id.input_setting_keys_value_200);
|
public static class ShadowKeyboardAccessibilitySlowKeysDialogFragment {
|
||||||
|
static KeyboardAccessibilitySlowKeysDialogFragment sInstance = null;
|
||||||
|
|
||||||
alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick();
|
@Implementation
|
||||||
ShadowLooper.idleMainLooper();
|
protected static KeyboardAccessibilitySlowKeysDialogFragment getInstance() {
|
||||||
|
return sInstance;
|
||||||
|
}
|
||||||
|
|
||||||
assertThat(alertDialog.isShowing()).isFalse();
|
public static void setInstance(KeyboardAccessibilitySlowKeysDialogFragment instance) {
|
||||||
int threshold = InputSettings.getAccessibilitySlowKeysThreshold(mContext);
|
sInstance = instance;
|
||||||
assertThat(threshold).isEqualTo(200);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.inputmethod;
|
||||||
|
|
||||||
|
import static com.android.settings.inputmethod.KeyboardAccessibilityKeysDialogFragment.EXTRA_SUBTITLE_RES;
|
||||||
|
import static com.android.settings.inputmethod.KeyboardAccessibilityKeysDialogFragment.EXTRA_TITLE_RES;
|
||||||
|
|
||||||
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.hardware.input.InputSettings;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.widget.RadioGroup;
|
||||||
|
|
||||||
|
import androidx.fragment.app.testing.FragmentScenario;
|
||||||
|
import androidx.lifecycle.Lifecycle;
|
||||||
|
import androidx.test.core.app.ApplicationProvider;
|
||||||
|
|
||||||
|
import com.android.settings.R;
|
||||||
|
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.robolectric.RobolectricTestRunner;
|
||||||
|
import org.robolectric.shadows.ShadowLooper;
|
||||||
|
|
||||||
|
@RunWith(RobolectricTestRunner.class)
|
||||||
|
public class KeyboardAccessibilitySlowKeysDialogFragmentTest {
|
||||||
|
private AlertDialog mAlertDialog;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() {
|
||||||
|
Bundle bundle = new Bundle();
|
||||||
|
bundle.putInt(EXTRA_TITLE_RES, R.string.slow_keys);
|
||||||
|
bundle.putInt(EXTRA_SUBTITLE_RES, R.string.slow_keys_summary);
|
||||||
|
|
||||||
|
FragmentScenario<KeyboardAccessibilitySlowKeysDialogFragment> mFragmentScenario =
|
||||||
|
FragmentScenario.launch(
|
||||||
|
KeyboardAccessibilitySlowKeysDialogFragment.class,
|
||||||
|
bundle,
|
||||||
|
R.style.Theme_AlertDialog_SettingsLib,
|
||||||
|
Lifecycle.State.INITIALIZED);
|
||||||
|
mFragmentScenario.moveToState(Lifecycle.State.RESUMED);
|
||||||
|
|
||||||
|
mFragmentScenario.onFragment(fragment -> {
|
||||||
|
assertThat(fragment.getDialog()).isNotNull();
|
||||||
|
assertThat(fragment.requireDialog().isShowing()).isTrue();
|
||||||
|
assertThat(fragment.requireDialog()).isInstanceOf(AlertDialog.class);
|
||||||
|
mAlertDialog = (AlertDialog) fragment.requireDialog();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void handlePreferenceTreeClick_performClickOn200_updatesSlowKeysThreshold() {
|
||||||
|
assertThat(mAlertDialog.isShowing()).isTrue();
|
||||||
|
RadioGroup radioGroup = mAlertDialog.findViewById(R.id.input_setting_keys_value_group);
|
||||||
|
radioGroup.check(R.id.input_setting_keys_value_200);
|
||||||
|
|
||||||
|
mAlertDialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick();
|
||||||
|
ShadowLooper.idleMainLooper();
|
||||||
|
|
||||||
|
assertThat(mAlertDialog.isShowing()).isFalse();
|
||||||
|
int threshold = InputSettings.getAccessibilitySlowKeysThreshold(
|
||||||
|
ApplicationProvider.getApplicationContext());
|
||||||
|
assertThat(threshold).isEqualTo(200);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -56,6 +56,7 @@ import com.android.wifitrackerlib.WifiEntry;
|
|||||||
import com.android.wifitrackerlib.WifiEntry.ConnectedState;
|
import com.android.wifitrackerlib.WifiEntry.ConnectedState;
|
||||||
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
@@ -72,6 +73,7 @@ import org.robolectric.shadows.ShadowBinder;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@Ignore("b/394813533")
|
||||||
@Deprecated(forRemoval = true)
|
@Deprecated(forRemoval = true)
|
||||||
@RunWith(RobolectricTestRunner.class)
|
@RunWith(RobolectricTestRunner.class)
|
||||||
@Config(shadows = {
|
@Config(shadows = {
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ public class ScreenLockPreferenceDetailsUtilsTest {
|
|||||||
private StorageManager mStorageManager;
|
private StorageManager mStorageManager;
|
||||||
|
|
||||||
private Context mContext;
|
private Context mContext;
|
||||||
|
private FakeFeatureFactory mFeatureFactory;
|
||||||
|
|
||||||
private ScreenLockPreferenceDetailsUtils mScreenLockPreferenceDetailsUtils;
|
private ScreenLockPreferenceDetailsUtils mScreenLockPreferenceDetailsUtils;
|
||||||
|
|
||||||
@@ -95,8 +96,8 @@ public class ScreenLockPreferenceDetailsUtilsTest {
|
|||||||
doNothing().when(mContext).startActivity(any());
|
doNothing().when(mContext).startActivity(any());
|
||||||
when(mUserManager.getProfileIdsWithDisabled(anyInt())).thenReturn(new int[]{});
|
when(mUserManager.getProfileIdsWithDisabled(anyInt())).thenReturn(new int[]{});
|
||||||
|
|
||||||
final FakeFeatureFactory featureFactory = FakeFeatureFactory.setupForTest();
|
mFeatureFactory = FakeFeatureFactory.setupForTest();
|
||||||
when(featureFactory.securityFeatureProvider.getLockPatternUtils(mContext))
|
when(mFeatureFactory.securityFeatureProvider.getLockPatternUtils(mContext))
|
||||||
.thenReturn(mLockPatternUtils);
|
.thenReturn(mLockPatternUtils);
|
||||||
|
|
||||||
mScreenLockPreferenceDetailsUtils = new ScreenLockPreferenceDetailsUtils(mContext);
|
mScreenLockPreferenceDetailsUtils = new ScreenLockPreferenceDetailsUtils(mContext);
|
||||||
@@ -230,6 +231,15 @@ public class ScreenLockPreferenceDetailsUtilsTest {
|
|||||||
assertNull(mScreenLockPreferenceDetailsUtils.getSummary(USER_ID));
|
assertNull(mScreenLockPreferenceDetailsUtils.getSummary(USER_ID));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getSummary_noLockPatternUtils_shouldReturnNull() {
|
||||||
|
when(mFeatureFactory.securityFeatureProvider.getLockPatternUtils(mContext))
|
||||||
|
.thenReturn(null);
|
||||||
|
mScreenLockPreferenceDetailsUtils = new ScreenLockPreferenceDetailsUtils(mContext);
|
||||||
|
|
||||||
|
assertNull(mScreenLockPreferenceDetailsUtils.getSummary(USER_ID));
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void isPasswordQualityManaged_withoutAdmin_shouldReturnFalse() {
|
public void isPasswordQualityManaged_withoutAdmin_shouldReturnFalse() {
|
||||||
final RestrictedLockUtils.EnforcedAdmin admin = null;
|
final RestrictedLockUtils.EnforcedAdmin admin = null;
|
||||||
@@ -274,6 +284,15 @@ public class ScreenLockPreferenceDetailsUtilsTest {
|
|||||||
assertThat(mScreenLockPreferenceDetailsUtils.isLockPatternSecure()).isFalse();
|
assertThat(mScreenLockPreferenceDetailsUtils.isLockPatternSecure()).isFalse();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void isLockPatternSecure_noLockPatterUtils_shouldReturnFalse() {
|
||||||
|
when(mFeatureFactory.securityFeatureProvider.getLockPatternUtils(mContext))
|
||||||
|
.thenReturn(null);
|
||||||
|
mScreenLockPreferenceDetailsUtils = new ScreenLockPreferenceDetailsUtils(mContext);
|
||||||
|
|
||||||
|
assertThat(mScreenLockPreferenceDetailsUtils.isLockPatternSecure()).isFalse();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@RequiresFlagsEnabled(Flags.FLAG_BIOMETRIC_ONBOARDING_EDUCATION)
|
@RequiresFlagsEnabled(Flags.FLAG_BIOMETRIC_ONBOARDING_EDUCATION)
|
||||||
public void shouldShowGearMenu_patternIsSecure_flagOn_shouldReturnFalse() {
|
public void shouldShowGearMenu_patternIsSecure_flagOn_shouldReturnFalse() {
|
||||||
@@ -341,6 +360,20 @@ public class ScreenLockPreferenceDetailsUtilsTest {
|
|||||||
ChooseLockGeneric.ChooseLockGenericFragment.class.getName());
|
ChooseLockGeneric.ChooseLockGenericFragment.class.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getLaunchChooseLockGenericFragmentIntent_noLockPatternUtils_returnsIntent() {
|
||||||
|
when(mFeatureFactory.securityFeatureProvider.getLockPatternUtils(mContext))
|
||||||
|
.thenReturn(null);
|
||||||
|
mScreenLockPreferenceDetailsUtils = new ScreenLockPreferenceDetailsUtils(mContext);
|
||||||
|
when(mUserManager.isQuietModeEnabled(any())).thenReturn(false);
|
||||||
|
|
||||||
|
final Intent intent = mScreenLockPreferenceDetailsUtils
|
||||||
|
.getLaunchChooseLockGenericFragmentIntent(SOURCE_METRICS_CATEGORY);
|
||||||
|
|
||||||
|
assertFragmentLaunchIntent(intent,
|
||||||
|
ChooseLockGeneric.ChooseLockGenericFragment.class.getName());
|
||||||
|
}
|
||||||
|
|
||||||
private void whenConfigShowUnlockSetOrChangeIsEnabled(boolean enabled) {
|
private void whenConfigShowUnlockSetOrChangeIsEnabled(boolean enabled) {
|
||||||
final int resId = ResourcesUtils.getResourcesId(
|
final int resId = ResourcesUtils.getResourcesId(
|
||||||
ApplicationProvider.getApplicationContext(), "bool",
|
ApplicationProvider.getApplicationContext(), "bool",
|
||||||
|
|||||||
Reference in New Issue
Block a user