不知道为什么我的按钮不工作



这里设置了第二个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上没有返回活动的代码

问题:

if(id == R.id.home)

你正在使用你的R java项目的id,它肯定会返回false,它应该是本地android home,而不是你的R生成的home id。

解决方案:

if(id == android.R.id.home)

相关内容

  • 没有找到相关文章

最新更新