I have an Actionbar app with fragments and a TabFragment extends Fragment
class, where I customize the functionality of my fragments.
I want to be able to control what the back button does.
@Overriding onBackPressed()
won't work because I am not in an Activity, nor will
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK)) {
//my code here
}
return super.onKeyDown(keyCode, event);
}
My goal is to hide some specific Views when I press back based on true/false value of a boolean variable. Any suggestions on how I might be able to manipulate this functionality? Thanks!