那么手机号为什么有的就能显示呢?
这个就像是一个变量,当移动运营商为它赋值了,它自然就会有值。不赋值自然为空。
对于移动的用户,手机号码(MDN)保存在运营商的服务器中,而不是保存在SIM卡里。SIM卡只保留了IMSI和一些验证信息。手机每次入网 注册的时候,都会以短信的形式将IMSI及验证信息上传到运营商的服务器,服务器在完成注册动作之后,会以短信的形式将注册的结果下发到手机里。下发的内 容会因条件不同而不同。
如果服务器在下发的短信中,不包含手机的号码,手机是无法取得电话号码。如果短信中包含了号码,手机才会将其缓存,以备他用.此外,对于其他运行商的SIM卡或者UIM卡,MDN有可能保存在UIM卡中。100%能够取得本机号码不太可能。
移动神州行,联通的卡是可以取到的.动感地带的取不到.别的卡还没有试过.
package
com.pei.activity;
import
android.app.Activity;
import
android.os.Bundle;
import
android.view.View;
import
android.view.View.OnClickListener;
import
android.widget.Button;
import
android.widget.TextView;
public
class
AndroidUtilActivity
extends
Activity {
private
Button button_getSIMInfo;
private
TextView number;
private
TextView privoid;
@Override
public
void
onCreate(Bundle savedInstanceState) {
super
.onCreate(savedInstanceState);
setContentView(R.layout.main);
button_getSIMInfo = (Button)
this
.findViewById(R.id.getSIMInfo);
number = (TextView)
this
.findViewById(R.id.textView1);
privoid = (TextView)
this
.findViewById(R.id.textView2);
button_getSIMInfo.setOnClickListener(
new
ButtonListener());
}
class
ButtonListener
implements
OnClickListener {
@Override
public
void
onClick(View v) {
if
(v == button_getSIMInfo) {
SIMCardInfo siminfo =
new
SIMCardInfo(AndroidUtilActivity.
this
);
System.out.println(siminfo.getProvidersName());
System.out.println(siminfo.getNativePhoneNumber());
number.setText(siminfo.getNativePhoneNumber());
privoid.setText(siminfo.getProvidersName());
}
}
}
}
|
package
com.pei.activity;
import
android.content.Context;
import
android.telephony.TelephonyManager;
public
class
SIMCardInfo {
private
TelephonyManager telephonyManager;
private
String IMSI;
public
SIMCardInfo(Context context) {
telephonyManager = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
}
public
String getNativePhoneNumber() {
String NativePhoneNumber=
null
;
NativePhoneNumber=telephonyManager.getLine1Number();
return
NativePhoneNumber;
}
public
String getProvidersName() {
String ProvidersName =
null
;
// 返回唯一的用户ID;就是这张卡的编号神马的
IMSI = telephonyManager.getSubscriberId();
// IMSI号前面3位460是国家,紧接着后面2位00 02是中国移动,01是中国联通,03是中国电信。
System.out.println(IMSI);
if
(IMSI.startsWith(
"46000"
) || IMSI.startsWith(
"46002"
)) {
ProvidersName =
"中国移动"
;
}
else
if
(IMSI.startsWith(
"46001"
)) {
ProvidersName =
"中国联通"
;
}
else
if
(IMSI.startsWith(
"46003"
)) {
ProvidersName =
"中国电信"
;
}
return
ProvidersName;
}
}
|
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:gravity="center">
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />