我的项目有5个活动(1个菜单,3个子菜单和1个帮助)
所有活动都有HELP按钮(HELP活动除外)。里面的帮助活动有imagem按钮BACK。
我应该怎样做,以便在点击帮助按钮时将其恢复为上一个激活状态?
我已经在使用该方法返回上一个活动:
Override
public boolean onKeyDown (int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
Finish ();
}
return true;
}
但除此之外,我想用BACK按钮实现。
答案 0 :(得分:1)
这样做:
Button buttonX = (Button)findViewById(R.id.buttonXName); // The id of the back button.
// Register the onClick listener with the implementation above
buttonX.setOnClickListener(new OnClickListener() {
public void onClick(View v)
{
finish()
}
});