Android:deviceId null(TelephonyManager)

TelephonyManager存在问题。 DeviceId为空/空白。 这是我的代码。 我错在哪里?

RegistryActivity.java

包android.tennis.app;

导入android.tennis.library.UserFunctions;
// import android.tennis.library.InfoPhoneAndroid;
import android.content.Context;
导入android.telephony.TelephonyManager;
导入android.provider.Settings.Secure;

[...]

公共类RegisterActivity扩展活动{

private String deviceID = null,androidID = null;

@覆盖
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);

   setContentView(R.layout.register);

[..]

  final TelephonyManager telephonyManager = (TelephonyManager) getApplicationContext().getSystemService(Context.TELEPHONY_SERVICE);
  deviceID = telephonyManager.getDeviceId(); 

[..]

   btnRegister.setOnClickListener(new View.OnClickListener() {
       public void onClick(View view) {

[..]

           UserFunctions userFunction = new UserFunctions();
           JSONObject json = userFunction.registerUser(nome, email, password, username, citta, data_di_nascita, cognome, deviceID);

}

当registerUser调用index.php时,deviceId为空。 为什么?

我的清单文件是:

<uses-sdk android:minSdkVersion="8" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:label="@string/app_name"
        android:name=".DashboardActivity" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <!--  Login Activity -->
    <activity
        android:label="Login"
        android:name=".LoginActivity">

    </activity>

    <!--  Register Activity -->
    <activity
        android:label="Register New Account"
        android:name=".RegisterActivity"></activity>
</application>

<!-- Allow to connect with internet -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

我使用模拟器。 如果我数字*#60#,则输出为:00000000


并非所有的Android设备都具有3G模块,因此它们不具有telephonyManager.getDeviceId(); 你应该使用一些其他的用户界面


这工作:

public String getUniqueID(){    
    String myAndroidDeviceId = "";
    TelephonyManager mTelephony = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
    if (mTelephony.getDeviceId() != null){
    myAndroidDeviceId = mTelephony.getDeviceId(); 
    }else{
     myAndroidDeviceId = Secure.getString(getApplicationContext().getContentResolver(), Secure.ANDROID_ID); 
    }
    return myAndroidDeviceId;
}

所有学分到这个答案

链接地址: http://www.djcxy.com/p/26225.html

上一篇: Android: deviceId null (TelephonyManager)

下一篇: How to share photo on Facebook through my Android App?