2014-04-08 98 views
0

如何在ActionBarActivity上使用appcompat v7更改programaticcaly android的動作欄圖標?由於Action bar icon app v7

ActionBar actionBar = getActionBar(); 

// set the icon 
actionBar.setIcon(R.drawable.navbar_logo); 

回答

1

使用getSupportActionBar().setIcon(R.drawable.navbar_logo);

或者,如果你需要執行其他任務的動作條變量以及

ActionBar actionBar = getSupportActionBar(); 
actionBar.setIcon(R.drawable.navbar_logo);