summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorDeepak Kundra <deepakkundra@gmail.com>2016-05-27 20:18:17 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-06-03 19:22:34 -0700
commitf6744a9b6493b172744deaf382a672699ac4730d (patch)
tree5acf5ddde639f1b864197cf0408206c2047cbc1d /res
parentd6715b97696f84c0fbd84fac416cafac80900a9a (diff)
downloadpackages_apps_settings-f6744a9b6493b172744deaf382a672699ac4730d.zip
packages_apps_settings-f6744a9b6493b172744deaf382a672699ac4730d.tar.gz
packages_apps_settings-f6744a9b6493b172744deaf382a672699ac4730d.tar.bz2
Radio info to control QC dbg prop's
Issue-id:FEIJ-679 Change-Id: Ia1c9e5d5899ae173d4fd7fa9b2339013b42f115b
Diffstat (limited to 'res')
-rw-r--r--res/layout/cm_radio_info.xml72
-rw-r--r--res/values/cm_strings.xml17
2 files changed, 89 insertions, 0 deletions
diff --git a/res/layout/cm_radio_info.xml b/res/layout/cm_radio_info.xml
new file mode 100644
index 0000000..f49db70
--- /dev/null
+++ b/res/layout/cm_radio_info.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 The CyanogenMod 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.
+-->
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <LinearLayout style="@style/info_layout">
+
+ <!-- Turn on/off prop for MBN Auto Loading -->
+ <Button android:id="@+id/mbn_auto_load"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <!-- Turn on/off prop for forcing VoLTE avail overlay -->
+ <Button android:id="@+id/volte_avail_ovr"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <!-- Turn on/off prop for forcing VT avail overlay -->
+ <Button android:id="@+id/vt_avail_ovr"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <!-- Turn on/off prop for forcing WFC avail overlay -->
+ <Button android:id="@+id/wfc_avail_ovr"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <!-- Turn on/off ADB radio log -->
+ <Button android:id="@+id/adb_radio_log"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <!-- Turn on/off DIAG log -->
+ <Button android:id="@+id/diag_log"
+ android:textSize="14sp"
+ android:layout_marginTop="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ </LinearLayout>
+</ScrollView>
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml
index b3c02f5..a0e811b 100644
--- a/res/values/cm_strings.xml
+++ b/res/values/cm_strings.xml
@@ -1223,4 +1223,21 @@
<string name="app_notification_no_ongoing_on_keyguard_title">Disable persistent notification on lock screen</string>
<string name="app_notification_no_ongoing_on_keyguard_summary">Never show persistent notifications from this app on the lock screen</string>
+ <!-- CmRadioInfo -->
+ <string name="cm_radio_info_label">Enhanced radio control</string>
+
+ <!-- Radio Control (IMS/MBN etc.) -->
+ <string name="cm_radio_info_mbn_auto_load_on_label">Turn off MBN auto load</string>
+ <string name="cm_radio_info_mbn_auto_load_off_label">Turn on MBN auto load</string>
+ <string name="cm_radio_info_volte_avail_ovr_on_label">Turn off VoLTE dbg</string>
+ <string name="cm_radio_info_volte_avail_ovr_off_label">Turn on VoLTE dbg</string>
+ <string name="cm_radio_info_vt_avail_ovr_on_label">Turn off VT dbg</string>
+ <string name="cm_radio_info_vt_avail_ovr_off_label">Turn on VT dbg</string>
+ <string name="cm_radio_info_wfc_avail_ovr_on_label">Turn off WFC dbg</string>
+ <string name="cm_radio_info_wfc_avail_ovr_off_label">Turn on WFC dbg</string>
+ <string name="cm_radio_info_adb_log_on_label">Turn off ADB radio log</string>
+ <string name="cm_radio_info_adb_log_off_label">Turn on ADB radio log</string>
+ <string name="cm_radio_info_diag_log_on_label">Turn off Diag log</string>
+ <string name="cm_radio_info_diag_log_off_label">Turn on Diag log</string>
+
</resources>