0

通話が終了した後、アプリではなくメイン画面に移動するため、通話後にアプリに戻るのに問題があります。

public class ButtonView extends FrameLayout  {
private static final String TAG = ButtonView.class.getSimpleName();
private final View mButtonView;

private Server mServer;
final Context context = getContext();

public ButtonView(Context context, AttributeSet attrs) {
    super(context, attrs);

    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    mButtonView = inflater.inflate(R.layout.input, this);
}

.
    .
    . 
    . 
    .
    .
public void call()  {
    PhoneCallListener phoneListener = new PhoneCallListener();
    TelephonyManager telephonyManager = (TelephonyManager) getContext()
            .getSystemService(Context.TELEPHONY_SERVICE);
    telephonyManager.listen(phoneListener,
            PhoneStateListener.LISTEN_CALL_STATE);

        Intent callIntent = new Intent(Intent.ACTION_CALL);
        callIntent.setData(Uri.parse("tel:048598077"));
        getContext().startActivity(callIntent); 


}


private class PhoneCallListener extends PhoneStateListener  {

    private boolean isPhoneCalling = false;
    String LOG_TAG = "LOGGING 123";

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

        if (TelephonyManager.CALL_STATE_RINGING == state) {
            // phone ringing
            Log.i(LOG_TAG, "RINGING, number: " + incomingNumber);
        }

        if (TelephonyManager.CALL_STATE_OFFHOOK == state) {
            // active
            Log.i(LOG_TAG, "OFFHOOK");

            isPhoneCalling = true;
        }

        if (TelephonyManager.CALL_STATE_IDLE == state) {
            // run when class initial and phone call ended, 
            // need detect flag from CALL_STATE_OFFHOOK
            Log.i(LOG_TAG, "IDLE");

            if (isPhoneCalling) {

                Log.i(LOG_TAG, "restart app");

                // restart app
                Context appContext = context.getApplicationContext();
                Intent i = appContext.getPackageManager().getLaunchIntentForPackage(appContext.getPackageName());
                i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                context.startActivity(i);

                isPhoneCalling = false;
            }
        }
    }
}

誰かが問題が何であるか知っていますか?または、通話後にアプリを再起動する他の方法はありますか?

4

1 に答える 1

0

エミュレーターを使用している場合は、エミュレーターではなく実際のデバイスでアプリケーションをテストしてください。また、PhoneStateListener を使用してアプリケーションを手動で開始する必要はありません。実際のデバイスでテストするだけで、アプリケーションが自動的に開始されます。

于 2012-11-20T10:17:57.477 に答える