3

着信が検出されたときに新しいアクティビティを開始する方法。CALL_STATE_RINGING以下のコードでは、状態で新しいアクティビティを開始したいと思います

public String getCurrentCallState(final TelephonyManager mytelMgr) {
        int callState = mytelMgr.getCallState();
        String callStateString = "NOTKNOWN";
        switch (callState) {
            case TelephonyManager.CALL_STATE_IDLE:
                callStateString = "IDLE";
                break;
            case TelephonyManager.CALL_STATE_OFFHOOK:
                callStateString = "OFFHOOK";
                break;
            case TelephonyManager.CALL_STATE_RINGING:
                callStateString = "RINGING";
                break;
         }
}

* CALL_STATE_RINGING *状態でいくつか変更を加えましたが、機能していません。電話が来るたびに、私のアプリは終了します。実際、着信が鳴っている間にそのアクティビティを呼び出したいと思います。

import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.widget.Toast;


public class CallHelper extends Activity
{


    /**
     * Listener to detect incoming calls. 
     */
    private class CallStateListener extends PhoneStateListener
    {


        @Override
        public void onCallStateChanged(int state, String incomingNumber) 
        {

            switch (state) {
            case TelephonyManager.CALL_STATE_RINGING:
                // called when someone is ringing to this phone
                Intent i = new Intent(getApplicationContext(), out.class);
                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   //must be provided
                getApplicationContext().startActivity(i);



            Toast.makeText(ctx, "Incoming: "+incomingNumber, Toast.LENGTH_LONG).show();


                break;
            }
        }
    }

    /**
     * Broadcast receiver to detect the outgoing calls.
     */
    public class OutgoingReceiver extends BroadcastReceiver {
        public OutgoingReceiver() {
        }

        @Override
        public void onReceive(Context context, Intent intent) {
            String number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);

            Toast.makeText(ctx, "Outgoing: "+number, Toast.LENGTH_LONG).show();
        }

    }

    private Context ctx;
    private TelephonyManager tm;
    private CallStateListener callStateListener;

    private OutgoingReceiver outgoingReceiver;

    public CallHelper(Context ctx) {
        this.ctx = ctx;

        callStateListener = new CallStateListener();
        outgoingReceiver = new OutgoingReceiver();
    }

    /**
     * Start calls detection.
     */
    public void start() {
        tm = (TelephonyManager) ctx.getSystemService(Context.TELEPHONY_SERVICE);
        tm.listen(callStateListener, PhoneStateListener.LISTEN_CALL_STATE);

        IntentFilter intentFilter = new IntentFilter(Intent.ACTION_NEW_OUTGOING_CALL);
        ctx.registerReceiver(outgoingReceiver, intentFilter);
    }

    /**
     * Stop calls detection.
     */
    public void stop() {
        tm.listen(callStateListener, PhoneStateListener.LISTEN_NONE);
        ctx.unregisterReceiver(outgoingReceiver);
    }

}
4

1 に答える 1

2

ActivityからServiceまたはを起動する場合、1つの重要なフラグを除いて違いはありませんBroadcastReceiverCALL_STATE_RINGINGの場合は、次を使用します。

Intent i = new Intent(getApplicationContext(), YourActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   //must be provided
getApplicationContext().startActivity(i);

起動アクティビティがAndroidManifestでも定義されていることを確認してください。

于 2013-03-27T08:01:01.057 に答える