summaryrefslogtreecommitdiffstats
path: root/res/layout
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/layout
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/layout')
-rw-r--r--res/layout/cm_radio_info.xml72
1 files changed, 72 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>