这里我在第二个avticity的oncreate方法上设置了这个
super.onCreate(savedInstanceState);
// Actionbar
getActionBar().setDisplayHomeAsUpEnabled(true);
setContentView(R.layout.new_message);
这是onOptionsItemSelected
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_save) {
Intent newMessage = new Intent(getApplicationContext(),NewMessage.class);
startActivity(newMessage);
}
if(id == R.id.home){
Toast.makeText(getApplicationContext(), "Home button click", 2000).show();
Intent intent = new Intent(getApplicationContext(),MainActivity.class);
startActivity(intent);
}
/* return super.onOptionsItemSelected(item);*/
return true;
}
我是否需要在Manifest等其他地方进行更改,或者在MainActivity上没有返回活动的代码
答案 0 :(得分:1)
<强>问题:强>
if(id == R.id.home)
您正在使用项目的R java中的id,它肯定会返回false,它应该是原生的android主页,而不是您为家庭生成的R。
<强>溶液强>
if(id == android.R.id.home)