Android - Como mover la barra del balance de audio desde el terminal Android 5.1.1

 
Vista:
sin imagen de perfil
Val: 1
Ha aumentado su posición en 3 puestos en Android (en relación al último mes)
Gráfica de Android

Como mover la barra del balance de audio desde el terminal Android 5.1.1

Publicado por Walter (1 intervención) el 14/03/2020 06:31:03
¿Cómo cambiar la barra de búsqueda o (sound_balance en logcat) en Accesibilidad Audición desde el terminal Android 5.1.1 SuperLite Roms?

Screenshot-2020-03-12-09-32-37

Con este comando abro la Audición de Subconfiguración:

1
am start -n com.android.settings/com.android.settings.SubSettings -e :settings:show_fragment com.android.settings.accessibility.AccessibilitySettingsHearing
Y este es el Xml de la Audición en Accesibilidad:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
com.android.settings.accessibility.AudioBalanceSeekbarPreference
 
res/xml/accessibility_settings_hearing.xml
 
<?xml version="1.0" encoding="utf-8" ?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" xmlns:touchwiz="http://schemas.android.com/apk/res/touchwiz" android:title="@string/audio_preference_title" android:key="audio_preference_key" settings:parent="@xml/accessibility_settings">
    <com.android.settings.SwitchPreferenceScreen android:title="@string/sound_detector_title" android:key="sound_detector_preference" android:summary="@string/sound_detector_summary" />
    <PreferenceScreen android:title="@string/sound_detector_main_title" android:key="sound_detector_plus_preference" android:summary="@string/sound_detector_main_description" />
    <SwitchPreference android:persistent="false" android:title="@string/flash_notification" android:key="flash_notification_key" android:summary="@string/flash_notification_summary" />
    <SwitchPreference android:persistent="false" android:title="@string/all_sound_off" android:key="all_sound_off_key" />
    <SwitchPreference android:title="@string/hac_mode_title" android:key="call_hearing_aid" android:summary="@string/hac_mode_summary" />
    <PreferenceScreen android:title="@string/accessibility_samsung_captioning_title" android:key="samsung_captioning_preference_screen" />
    <PreferenceScreen android:title="@string/accessibility_captioning_title" android:key="google_captioning_preference_screen" android:fragment="com.android.settings.accessibility.CaptionPropertiesFragment" />
    <com.android.settings.accessibility.AudioBalanceSeekbarPreference android:title="@string/audio_balance" android:key="sound_balance" />
    <SwitchPreference android:persistent="false" android:title="@string/mono_audio_title" android:key="mono_audio_key" android:summary="@string/mono_audio_summary" />
    <SwitchPreference android:title="@string/auto_haptic" android:key="auto_haptic_key" />
</PreferenceScreen>
Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder