2 番目の SIM カードの番号を取得するには?
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
tm.getLine1Number();
最初の SIM カードの番号を返します。
2 番目の SIM カードの番号を取得するには?
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
tm.getLine1Number();
最初の SIM カードの番号を返します。