am 22f257b0: am 93c10334: Merge "Added IMEI status activity." into lmp-mr1-dev

* commit '22f257b091a444b0749e66faa4dc79fd24adacbf':
  Added IMEI status activity.
This commit is contained in:
PauloftheWest
2014-10-30 11:03:29 +00:00
committed by Android Git Automerger
4 changed files with 233 additions and 0 deletions

View File

@@ -5979,4 +5979,9 @@
<!-- Message for encryption dialog telling the user that Talkback and other accessibility services will be disabled. -->
<string name="encrypt_talkback_dialog_message_password">When you enter your password to start this device, accessibility services like <xliff:g id="service" example="TalkBack">%1$s</xliff:g> won\'t yet be available.</string>
<!-- Title and summary for SIM Status -->
<string name="imei_information_title">IMEI information</string>
<string name="imei_information_summary">IMEI relative information</string>
<string name="slot_number">(Slot<xliff:g id="slot_num">%1$d</xliff:g>)</string>
</resources>

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 The Android Open Source 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.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/imei_information_title">
<!-- This menu item is only for CDMA phone -->
<Preference android:key="min_number"
android:title="@string/status_min_number"
android:summary="@string/device_info_not_available" />
<!-- This menu item is only for CDMA phone -->
<Preference android:key="prl_version"
android:title="@string/status_prl_version"
android:summary="@string/device_info_not_available" />
<!-- This menu item is only for CDMA phone -->
<Preference android:key="meid_number"
android:title="@string/status_meid_number"
android:summary="@string/device_info_not_available" />
<Preference android:key="imei"
android:title="@string/status_imei"
android:summary="@string/device_info_not_available" />
<Preference android:key="imei_sv"
android:title="@string/status_imei_sv"
android:summary="@string/device_info_not_available" />
<Preference android:key="icc_id"
android:title="@string/status_icc_id"
android:summary="@string/device_info_not_available" />
</PreferenceScreen>