您好
我有一个问题。
在我的Android项目中,我有一个动作栏。
我会有一个徽标和一个图标,但如果我拿到徽标,它只是徽标而不是图标。
if (getSupportActionBar() != null) {
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDisplayUseLogoEnabled(true);
getSupportActionBar().setIcon(ContextCompat.getDrawable(this, R.mipmap.ic_launcher));
getSupportActionBar().setLogo(R.drawable.logo_text);
}
如果我只是采用“getSupportActionBar()。setIcon(ContextCompat.getDrawable(this,R.mipmap.ic_launcher));”而不是“getSupportActionBar()。setLogo(R.drawable.logo_text);”,然后有一个图标。
我该怎么办?
由于