am ab845180
: Remove sim status and imei for secondary user.
* commit 'ab84518009c53e28e021f27696cd4e51360fccbc': Remove sim status and imei for secondary user.
This commit is contained in:
@@ -66,6 +66,7 @@ public class Status extends PreferenceActivity {
|
|||||||
private static final String KEY_SERIAL_NUMBER = "serial_number";
|
private static final String KEY_SERIAL_NUMBER = "serial_number";
|
||||||
private static final String KEY_WIMAX_MAC_ADDRESS = "wimax_mac_address";
|
private static final String KEY_WIMAX_MAC_ADDRESS = "wimax_mac_address";
|
||||||
private static final String KEY_SIM_STATUS = "sim_status";
|
private static final String KEY_SIM_STATUS = "sim_status";
|
||||||
|
private static final String KEY_IMEI_INFO = "imei_info";
|
||||||
|
|
||||||
// Broadcasts to listen to for connectivity changes.
|
// Broadcasts to listen to for connectivity changes.
|
||||||
private static final String[] CONNECTIVITY_INTENTS = {
|
private static final String[] CONNECTIVITY_INTENTS = {
|
||||||
@@ -203,6 +204,12 @@ public class Status extends PreferenceActivity {
|
|||||||
removePreferenceFromScreen(KEY_SERIAL_NUMBER);
|
removePreferenceFromScreen(KEY_SERIAL_NUMBER);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Remove SimStatus and Imei for Secondary user as it access Phone b/19165700
|
||||||
|
if (UserHandle.myUserId() != UserHandle.USER_OWNER) {
|
||||||
|
removePreferenceFromScreen(KEY_SIM_STATUS);
|
||||||
|
removePreferenceFromScreen(KEY_IMEI_INFO);
|
||||||
|
}
|
||||||
|
|
||||||
// Make every pref on this screen copy its data to the clipboard on longpress.
|
// Make every pref on this screen copy its data to the clipboard on longpress.
|
||||||
// Super convenient for capturing the IMEI, MAC addr, serial, etc.
|
// Super convenient for capturing the IMEI, MAC addr, serial, etc.
|
||||||
getListView().setOnItemLongClickListener(
|
getListView().setOnItemLongClickListener(
|
||||||
|
Reference in New Issue
Block a user