2016-04-22 17 views
0

Android Android.1のアクティビティと1の掲示板の受信を行っています。再起動時のAndroidアプリのエラー

public abstract class PhonecallReceiver extends BroadcastReceiver { 

@Override 
public void onReceive(Context context, Intent intent) { 

     if  (intent.getAction().equals("android.intent.action.NEW_OUTGOING_CALL")) { 
     savedNumber = intent.getExtras().getString("android.intent.extra.PHONE_NUMBER"); 
    } 
    else{ 
     String stateStr = intent.getExtras().getString(TelephonyManager.EXTRA_STATE); 
     String number = intent.getExtras().getString(TelephonyManager.EXTRA_INCOMING_NUMBER); 
     int state = 0; 
     if(stateStr.equals(TelephonyManager.EXTRA_STATE_IDLE)){ 
      state = TelephonyManager.CALL_STATE_IDLE; 
     } 
     else if(stateStr.equals(TelephonyManager.EXTRA_STATE_OFFHOOK)){ 
      state = TelephonyManager.CALL_STATE_OFFHOOK; 
     } 
     else if(stateStr.equals(TelephonyManager.EXTRA_STATE_RINGING)){ 
      state = TelephonyManager.CALL_STATE_RINGING; 
     } 


     onCallStateChanged(context, state, number); 
    } 
} 
} 

そしてmanifestfile

、私は電話を再起動したときに、アプリの実行fine.Butを実行
<receiver 
android:name=".PhonecallReceiver" 
android:enabled="true" 
android:exported="true"> 
<intent-filter> 
    <action android:name="android.intent.action.BOOT_COMPLETED"/> 
    <action android:name="android.intent.action.PHONE_STATE" /> 
    <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> 
</intent-filter> 

、アプリのエラーで:

if (intent.getAction().equals("android.intent.action.NEW_OUTGOING_CALL")) 

答えて

0
error.Thankを修正する方法

インテントにはnullをチェックする必要があります。 例:

if(intent != null && !TextUtils.isEmplty(intent.getAction()) 
{ 

} 

ここにあなたのログエラーがあります。

0

マニフェストには以下のコードがありますか?

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"> 

ここ

であなたのエラーログを投稿してください
関連する問題