首页 > 代码库 > 重写actionbar的up返回按钮

重写actionbar的up返回按钮

@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);
}