当我点击应用程序的徽标时,它不会重定向到我的主页。我尝试了很多代码。
我想点击我的徽标并重定向到我的主页。
这是我的代码:
getSupportActionBar().setLogo(R.mipmap.ic_launcher); //set the logo
getSupportActionBar().setDisplayUseLogoEnabled(true);
...
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.home) {
webViewPlaceholder.loadUrl("https:www.google.com");
}
}