2016-07-17 8 views
0

私のコードで問題を見つけました。Androidブロードキャストレシーバーがトリガーしていない

私はアンドロイドで放送受信機を操作する方法を学習しています。 私は受信者クラスを作成し、それをマニフェストに登録しました。

私のアプリを実行すると、それは誘発しません。

私はそれがAndroid OSによって自動的に起動される前に少なくとも1回手動で受信機を呼び出さなければならないからだと思います。 私はこれに新しいですが、私は間違っている可能性があります。

私はtutorialspointvogellaサイトから学んでいます。

着信コールを受信したときに実際にトリガーする方法を知る必要があります。

これは私のマニフェスト・ファイルです:

<?xml version="1.0" encoding="utf-8"?> 

<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> 
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity android:name=".MainActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

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

<receiver android:name="PhoneCallReceiver" > 
    <intent-filter> 
     <action android:name="android.intent.action.PHONE_STATE" /> 
    </intent-filter> 
    <intent-filter> 
     <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> 
    </intent-filter> 
</receiver> 

マイブロードキャストクラスは次のようにされ、Javaフォルダ

package com.teqnet.receivers; 

import java.util.Date; 

import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.telephony.TelephonyManager; 
import android.util.Log; 
import android.widget.Toast; 

public class PhoneCallReceiver extends BroadcastReceiver { 


private static int lastState = TelephonyManager.CALL_STATE_IDLE; 
private static Date callStartTime; 
private static boolean isIncoming; 
private static String savedNumber; 


@Override 
public void onReceive(Context context, Intent intent) { 
    Toast.makeText(context,"Receiver Triggered",Toast.LENGTH_LONG).show(); 

    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; 
      Toast.makeText(context,"Phone Ringing",Toast.LENGTH_LONG).show(); 
     } 


     onCallStateChanged(context, state, number); 
    } 
} 

//Derived classes should override these to respond to specific events of interest 
protected void onIncomingCallStarted(Context ctx, String number, Date start){} 
protected void onOutgoingCallStarted(Context ctx, String number, Date start){} 
protected void onIncomingCallEnded(Context ctx, String number, Date start, Date end){} 
protected void onOutgoingCallEnded(Context ctx, String number, Date start, Date end){} 
protected void onMissedCall(Context ctx, String number, Date start){} 

//Deals with actual events 

//Incoming call- goes from IDLE to RINGING when it rings, to OFFHOOK when it's answered, to IDLE when its hung up 
//Outgoing call- goes from IDLE to OFFHOOK when it dials out, to IDLE when hung up 
public void onCallStateChanged(Context context, int state, String number) { 
    if(lastState == state){ 
     //No change, debounce extras 
     return; 
    } 
    switch (state) { 
     case TelephonyManager.CALL_STATE_RINGING: 
      isIncoming = true; 
      callStartTime = new Date(); 
      savedNumber = number; 
      Toast.makeText(context,savedNumber,Toast.LENGTH_LONG).show(); 
      // onIncomingCallStarted(context, number, callStartTime); 
      break; 
     case TelephonyManager.CALL_STATE_OFFHOOK: 
      //Transition of ringing->offhook are pickups of incoming calls. Nothing done on them 
      if(lastState != TelephonyManager.CALL_STATE_RINGING){ 
       isIncoming = false; 
       callStartTime = new Date(); 
       // onOutgoingCallStarted(context, savedNumber, callStartTime); 
      } 
      break; 
     case TelephonyManager.CALL_STATE_IDLE: 
      //Went to idle- this is the end of a call. What type depends on previous state(s) 
      if(lastState == TelephonyManager.CALL_STATE_RINGING){ 
       //Ring but no pickup- a miss 
       // onMissedCall(context, savedNumber, callStartTime); 
      } 
      else if(isIncoming){ 
       // onIncomingCallEnded(context, savedNumber, callStartTime, new Date()); 
      } 
      else{ 
       // onOutgoingCallEnded(context, savedNumber, callStartTime, new Date()); 
      } 
      break; 
    } 
    lastState = state; 
} 

}内に存在

最後に私の主な活動ファイルです。私はちょうど受信を確認するためにトーストメッセージをトリガーしようとしていて、私はそこに何もしておりません注意してください、あなたの受信機は、アプリケーション・タグの中に表示されていることを確認してくださいあなたのマニフェストファイルで

package com.teqnet.receivers; 

import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 

public class MainActivity extends AppCompatActivity { 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
} 
} 

を引き起こしています。 修正されたマニフェストファイルを投稿しています。

<?xml version="1.0" encoding="utf-8"?> 

<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> 
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity android:name=".MainActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

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

    <receiver android:name="PhoneCallReceiver" > 
     <intent-filter> 
      <action android:name="android.intent.action.PHONE_STATE" /> 
     </intent-filter> 
     <intent-filter> 
      <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> 
     </intent-filter> 
    </receiver> 
</application> 

単純なミスが、それは私の日の仕事を要しました;)。 幸運みんな。

答えて

0

設定に移動し、アプリに移動します。現在、特定のファイルタイプのデフォルトランチャーであるアプリを選択します。ここで手動でアプリを選択してみてください。それが動作する場合は、最初の起動時にユーザーに既定のアクセス許可を要求する必要があります。

これを試してください。

import java.util.Date; 

import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.telephony.TelephonyManager; 

public abstract class PhonecallReceiver extends BroadcastReceiver { 

    //The receiver will be recreated whenever android feels like it. We need a static variable to remember data between instantiations 

    private static int lastState = TelephonyManager.CALL_STATE_IDLE; 
    private static Date callStartTime; 
    private static boolean isIncoming; 
    private static String savedNumber; //because the passed incoming is only valid in ringing 


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

     //We listen to two intents. The new outgoing call only tells us of an outgoing call. We use it to get the number. 
     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); 
     } 
    } 

    //Derived classes should override these to respond to specific events of interest 
    protected void onIncomingCallStarted(Context ctx, String number, Date start){} 
    protected void onOutgoingCallStarted(Context ctx, String number, Date start){} 
    protected void onIncomingCallEnded(Context ctx, String number, Date start, Date end){} 
    protected void onOutgoingCallEnded(Context ctx, String number, Date start, Date end){} 
    protected void onMissedCall(Context ctx, String number, Date start){} 

    //Deals with actual events 

    //Incoming call- goes from IDLE to RINGING when it rings, to OFFHOOK when it's answered, to IDLE when its hung up 
    //Outgoing call- goes from IDLE to OFFHOOK when it dials out, to IDLE when hung up 
    public void onCallStateChanged(Context context, int state, String number) { 
     if(lastState == state){ 
      //No change, debounce extras 
      return; 
     } 
     switch (state) { 
      case TelephonyManager.CALL_STATE_RINGING: 
       isIncoming = true; 
       callStartTime = new Date(); 
       savedNumber = number; 
       onIncomingCallStarted(context, number, callStartTime); 
       break; 
      case TelephonyManager.CALL_STATE_OFFHOOK: 
       //Transition of ringing->offhook are pickups of incoming calls. Nothing done on them 
       if(lastState != TelephonyManager.CALL_STATE_RINGING){ 
        isIncoming = false; 
        callStartTime = new Date(); 
        onOutgoingCallStarted(context, savedNumber, callStartTime);      
       } 
       break; 
      case TelephonyManager.CALL_STATE_IDLE: 
       //Went to idle- this is the end of a call. What type depends on previous state(s) 
       if(lastState == TelephonyManager.CALL_STATE_RINGING){ 
        //Ring but no pickup- a miss 
        onMissedCall(context, savedNumber, callStartTime); 
       } 
       else if(isIncoming){ 
        onIncomingCallEnded(context, savedNumber, callStartTime, new Date());      
       } 
       else{ 
        onOutgoingCallEnded(context, savedNumber, callStartTime, new Date());            
       } 
       break; 
     } 
     lastState = state; 
    } 
} 

AndroidManifestに次を追加します。私のAndroid携帯電話上でTutorial & Source

+0

:XML

<uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> <!--This part is inside the application--> <receiver android:name=".CallReceiver" > <intent-filter> <action android:name="android.intent.action.PHONE_STATE" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> </intent-filter> </receiver> 

使用例:より多くの場合

public class CallReceiver extends PhonecallReceiver { @Override protected void onIncomingCallStarted(Context ctx, String number, Date start) { } @Override protected void onOutgoingCallStarted(Context ctx, String number, Date start) { } @Override protected void onIncomingCallEnded(Context ctx, String number, Date start, Date end) { } @Override protected void onOutgoingCallEnded(Context ctx, String number, Date start, Date end) { } @Override protected void onMissedCall(Context ctx, String number, Date start) { } } 

? –

+0

はいまたはエミュレータ。 –

+0

携帯電話では、アプリの設定を変更できません。私は強制的に停止またはアンインストールすることができます;(。私の電話でテストする –

関連する問題