tollbar返回主页

2020-05-07  本文已影响0人  资本家大恶人
   //返回按钮的监听
        setSupportActionBar(root.tb);

        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        getSupportActionBar().setHomeButtonEnabled(true);

    }
// 创建option监听
    @Override
    public boolean onOptionsItemSelected(@NonNull MenuItem item) {
        if (item.getItemId() == android.R.id.home) {
            finish();
        }
        return super.onOptionsItemSelected(item);
    }
上一篇 下一篇

猜你喜欢

热点阅读