Search code examples
androidback-buttonandroid-3.1-honeycomb

Disable Back Home button Android 3.1


I have an application running on Samsung Galaxy Tab 8.9 with Android 3.1.

I have to disable Back button. I know that

<category android:name="android.intent.category.HOME" />

disables the Home button. But I don't want to disable the Home button. I want to disable only the BackButton and not the HomeButton.

Thanks everyone..


Solution

  • You can override onBackPressed in your activity

    @Override
    public void onBackPressed() {
        //do nothing
    }