android Programming Glossary: imeisim1
Android : Check whether the phone is dual SIM http://stackoverflow.com/questions/14517338/android-check-whether-the-phone-is-dual-sim setContentView R.layout.activity_main TelephonyInfo telephonyInfo TelephonyInfo.getInstance this String imeiSIM1 telephonyInfo.getImeiSIM1 String imeiSIM2 telephonyInfo.getImeiSIM2 boolean isSIM1Ready telephonyInfo.isSIM1Ready boolean.. boolean isDualSIM telephonyInfo.isDualSIM TextView tv TextView findViewById R.id.tv tv.setText IME1 imeiSIM1 n IME2 imeiSIM2 n IS DUAL SIM isDualSIM n IS SIM1 READY isSIM1Ready n IS SIM2 READY isSIM2Ready n And here is TelephonyInfo.java.. public final class TelephonyInfo private static TelephonyInfo telephonyInfo private String imeiSIM1 private String imeiSIM2 private boolean isSIM1Ready private boolean isSIM2Ready public String getImeiSIM1 return imeiSIM1..
|