diff options
author | Chouting Zhang <MichaelZhang@motorola.com> | 2009-06-24 14:25:43 -0500 |
---|---|---|
committer | Wink Saville <wink@google.com> | 2009-06-25 22:01:32 -0700 |
commit | 386278a338d740dce95b7fa1514662b0eb5683e4 (patch) | |
tree | 03df16b9c97743db7fab9efa481a7aae48c41233 /res/xml/device_info_status.xml | |
parent | d2e3b0139009b98be5ed825e58c38a325240594e (diff) | |
download | packages_apps_Settings-386278a338d740dce95b7fa1514662b0eb5683e4.tar.gz packages_apps_Settings-386278a338d740dce95b7fa1514662b0eb5683e4.tar.bz2 packages_apps_Settings-386278a338d740dce95b7fa1514662b0eb5683e4.zip |
CDMA Settings additions
This patch implement CDMA Settings features
1. Add code to get MEID, MIN, and PRL value if the phone is a CDMA Phone
2. Display MEID, MIN, and PRL on Settings screen if it is a CDMA phone
3. Do not display IMSI, IMEI, and IMEI SV for a CDMA phone
Diffstat (limited to 'res/xml/device_info_status.xml')
-rw-r--r-- | res/xml/device_info_status.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/res/xml/device_info_status.xml b/res/xml/device_info_status.xml index 2d4c77239..dee606d6f 100644 --- a/res/xml/device_info_status.xml +++ b/res/xml/device_info_status.xml @@ -32,6 +32,24 @@ android:title="@string/status_number" android:summary="@string/device_info_not_available" android:persistent="false" /> + <!-- This menu item is only for CDMA phone --> + <Preference android:key="min_number" + style="?android:attr/preferenceInformationStyle" + android:title="@string/status_min_number" + android:summary="@string/device_info_not_available" + android:persistent="false" /> + <!-- This menu item is only for CDMA phone --> + <Preference android:key="prl_version" + style="?android:attr/preferenceInformationStyle" + android:title="@string/status_prl_version" + android:summary="@string/device_info_not_available" + android:persistent="false" /> + <!-- This menu item is only for CDMA phone --> + <Preference android:key="meid_number" + style="?android:attr/preferenceInformationStyle" + android:title="@string/status_meid_number" + android:summary="@string/device_info_not_available" + android:persistent="false" /> <Preference android:key="operator_name" style="?android:attr/preferenceInformationStyle" android:title="@string/status_operator" |