@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { // Respond to the action bar‘s Up/Home button case android.R.id.home: //这里写重写的方法 一定要retrun true消费这个事件。 return true; } return super.onOptionsItemSelected(item); }
重写actionbar的up返回按钮
时间: 2024-10-16 03:49:00