JLChen
2021-01-04 ed86fe7ed952bb2151aac8841134246bbde152c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:linphone="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:orientation="vertical">
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_echo_cancellation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:subtitle="@string/pref_echo_cancellation_summary"
            linphone:title="@string/pref_echo_cancellation" />
 
        <org.linphone.settings.widget.BasicSetting
            android:id="@+id/pref_echo_canceller_calibration"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_echo_canceller_calibration"/>
 
        <org.linphone.settings.widget.BasicSetting
            android:id="@+id/pref_echo_tester"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_echo_tester"/>
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_adaptive_rate_control"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_adaptive_rate_control" />
 
        <org.linphone.settings.widget.ListSetting
            android:id="@+id/pref_codec_bitrate_limit"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:list_items_names="@array/limit_bitrate_entries"
            linphone:list_items_values="@array/limit_bitrate_entry_values"
            linphone:title="@string/pref_codec_bitrate_limit" />
 
        <org.linphone.settings.widget.TextSetting
            android:id="@+id/pref_mic_gain_db"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:hint="@string/pref_mic_gain_db"
            linphone:title="@string/pref_mic_gain_db" />
 
        <org.linphone.settings.widget.TextSetting
            android:id="@+id/pref_playback_gain_db"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:hint="@string/pref_playback_gain_db"
            linphone:title="@string/pref_playback_gain_db" />
 
        <TextView
            style="@style/settings_category_font"
            android:text="@string/pref_codecs"
            android:paddingTop="15dp"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
 
        <LinearLayout
            android:id="@+id/pref_audio_codecs"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"/>
 
    </LinearLayout>
 
</ScrollView>