Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Minimize the app when click the back button android

I created an app that calls the onPause() when the back button is pressed.

As following way..

protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();

        // Notification show in status bar

        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
                this).setSmallIcon(R.drawable.icon).setContentTitle("TNLRadio")
                .setContentText("");
        // Creates an explicit intent for an Activity in your app
        // Intent resultIntent = new Intent(this, MainActivity.class);
        Intent resultIntent = this.getIntent();

        TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
        // Adds the back stack for the Intent (but not the Intent itself)
        stackBuilder.addParentStack(MainActivity.class);
        // Adds the Intent that starts the Activity to the top of the stack
        stackBuilder.addNextIntent(resultIntent);
        PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0,
                PendingIntent.FLAG_UPDATE_CURRENT);
        mBuilder.setContentIntent(resultPendingIntent);
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        int mId = 0;
        // mId allows you to update the notification later on.
        mNotificationManager.notify(mId, mBuilder.build());

        this.unregisterReceiver(UIStateManager.getInsatance());
        // unregister call listener
        UIStateManager.getInsatance().onPause(this);
    }

I want to do the same things when click the back button ... which is in onBackPress(). I call the onPause() method inside the onBackPress() method.

Then I got the error as follows:

08-28 13:45:34.600: E/AndroidRuntime(14153): FATAL EXCEPTION: main
08-28 13:45:34.600: E/AndroidRuntime(14153): java.lang.IllegalArgumentException: Receiver not registered: com.ironone.streaming.evt.UIStateManager@4153d788
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.app.LoadedApk.forgetReceiverDispatcher(LoadedApk.java:628)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.app.ContextImpl.unregisterReceiver(ContextImpl.java:1130)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.content.ContextWrapper.unregisterReceiver(ContextWrapper.java:354)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at com.ironone.streaming.MainActivity.onPause(MainActivity.java:567)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at com.ironone.streaming.MainActivity.onBackPressed(MainActivity.java:866)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.app.Activity.onKeyUp(Activity.java:2099)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.view.KeyEvent.dispatch(KeyEvent.java:2633)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.app.Activity.dispatchKeyEvent(Activity.java:2329)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1957)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.view.ViewRootImpl.deliverKeyEventPostIme(ViewRootImpl.java:3546)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.view.ViewRootImpl.handleFinishedEvent(ViewRootImpl.java:3519)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2603)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.os.Handler.dispatchMessage(Handler.java:99)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.os.Looper.loop(Looper.java:137)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at android.app.ActivityThread.main(ActivityThread.java:4507)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at java.lang.reflect.Method.invokeNative(Native Method)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at java.lang.reflect.Method.invoke(Method.java:511)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:790)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
08-28 13:45:34.600: E/AndroidRuntime(14153):    at dalvik.system.NativeStart.main(Native Method)

Please help me as soon as possible

like image 902
ma34 Avatar asked Oct 04 '22 03:10

ma34


1 Answers

First, completely remove the onBackPressed(). Then, try inserting the following code into your onKeyDown() as follows. (if you don't have a such a method already. Just copy past the following code)

public boolean onKeyDown(int keyCode, KeyEvent event) {

    if(keyCode == KeyEvent.KEYCODE_BACK)
    {
            moveTaskToBack(true);
            return true;
    }

    // your other related codes
}
like image 89
enadun Avatar answered Oct 09 '22 04:10

enadun