Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to override home button in android 4.0

I want to override the home button in my android activity. I have tried out few things related to this which are working for 2.3 and below but not for 4.0 above

@Override public boolean onKeyDown(int keyCode, KeyEvent event) {

    if(keyCode == KeyEvent.KEYCODE_HOME)
    {
        startActivity(new Intent(this, ActivityB.class));
        return true;
    }
    return super.onKeyDown(keyCode, event); }

and other is way

 @Override public void onAttachedToWindow() { 
     this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
     super.onAttachedToWindow(); 
 }

But its not helping me. any have idea about it please share information

like image 918
Balu Avatar asked Apr 09 '14 04:04

Balu


People also ask

How do I change the home button on my Android?

To do this, navigate to Settings, tap Display, and then tap Navigation bar. Make sure Buttons is selected at the top of the screen, and then you can choose your desired button setup at the bottom of the screen.

Is there an app to replace the home button?

Navigation Bar If your home button has let you down, and you've always been intrigued by those minimal icons that most Android phones use for navigation, then Navigation Bar is for you. This app gives you the Material Design Back, Home and Recents buttons across the bottom of your screen, just like the official ones.


1 Answers

I also encountered such a problem and I am using the following class to listen to the home button click event.

public class HomeWatcher {

    static final String TAG = "HomeWatcher";

    private Context mContext;

    private IntentFilter mFilter;

    private OnHomePressedListener mListener;

    private InnerRecevier mRecevier;

    public HomeWatcher(Context context) {
        mContext = context;
        mFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
    }

    /**
     * set the home pressed listener, if set will callback the home pressed
     * listener's method when home pressed.
     * 
     * @param listener
     */
    public void setOnHomePressedListener(OnHomePressedListener listener) {
        mListener = listener;
        mRecevier = new InnerRecevier();
    }

    /**
     * start watch
     */
    public void startWatch() {
        if (mRecevier != null) {
            mContext.registerReceiver(mRecevier, mFilter);
        }
    }

    /**
     * stop watch
     */
    public void stopWatch() {
        if (mRecevier != null) {
            mContext.unregisterReceiver(mRecevier);
        }
    }

    class InnerRecevier extends BroadcastReceiver {

        final String SYSTEM_DIALOG_REASON_KEY = "reason";

        final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";

        final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";

        final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";

        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
                String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
                if (reason != null) {
                    Log.i(TAG, "receive action:" + action + ",reason:" + reason);
                    if (mListener != null) {
                        if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {

                            // home?
                            mListener.onHomePressed();
                        } else if (reason
                                .equals(SYSTEM_DIALOG_REASON_RECENT_APPS)) {

                            // ??home?
                            mListener.onHomeLongPressed();
                        }
                    }
                }
            }
        }

    }

}

Usage is as follows:

HomeWatcher mHomeWatcher = new HomeWatcher(Context);
mHomeWatcher.setOnHomePressedListener(new OnHomePressedListener() {

    public void onHomePressed() {

        //do your somthing...
    }

    public void onHomeLongPressed() {
    }

});

mHomeWatcher.startWatch();
like image 68
BigFace_Kang Avatar answered Oct 01 '22 01:10

BigFace_Kang