Skip to content Skip to sidebar Skip to footer

Android: How To Disable Top Left Back Button From Subsettings

From Android Jellybeans, all sub-activities of Settings activity are having this back button at top left corner which calls the Settings activity. It behaves more like a 'up' butto

Solution 1:

Try this

getActionBar().setDisplayHomeAsUpEnabled(false);

Post a Comment for "Android: How To Disable Top Left Back Button From Subsettings"