summaryrefslogtreecommitdiffstats
path: root/telephony/java/android
diff options
context:
space:
mode:
authorJohn Wang <johnwang@google.com>2010-12-03 16:52:36 -0800
committerJohn Wang <johnwang@google.com>2010-12-06 10:25:52 -0800
commit4d76f364226cf049bfc850a339ea2cf63e3ae3e7 (patch)
tree1c1b4b47b9904eb7726bf339d8a5e08e7eedc81f /telephony/java/android
parentd6c3838672f043984457c1352e878af5b3e6a79b (diff)
downloadframeworks_base-4d76f364226cf049bfc850a339ea2cf63e3ae3e7.zip
frameworks_base-4d76f364226cf049bfc850a339ea2cf63e3ae3e7.tar.gz
frameworks_base-4d76f364226cf049bfc850a339ea2cf63e3ae3e7.tar.bz2
Add iDEN to getNetworkTypeName.
For bug 2667143. Integrated Digital Enhanced Network (iDEN) is a mobile telecommunications technology which provides its users the benefits of a trunked radio and a cellular telephone. Change-Id: I4a1f5dbdd22a2c4ce5252688053ec4a47805d6b9
Diffstat (limited to 'telephony/java/android')
-rw-r--r--telephony/java/android/telephony/TelephonyManager.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java
index 9ef41f2..38f57c9 100644
--- a/telephony/java/android/telephony/TelephonyManager.java
+++ b/telephony/java/android/telephony/TelephonyManager.java
@@ -477,6 +477,8 @@ public class TelephonyManager {
return "LTE";
case NETWORK_TYPE_EHRPD:
return "CDMA - eHRPD";
+ case NETWORK_TYPE_IDEN:
+ return "iDEN";
default:
return "UNKNOWN";
}