Is there a way to hide the app icon from the ActionBar; that is, have an ActionBar without an icon?
Here is my current code:
public boolean onCreateOptionsMenu(Menu menu) {
ActionBar actionBar = getSupportActionBar();
actionBar.setBackgroundDrawable(
new ColorDrawable(Color.parseColor("#000000")));
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle(" OrderIn");
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setIcon(R.drawable.actionbar_logo);
return true;
}