by default it was to appear but not appearing I found this question App icon does not appear but the answer did not answer.
by default it was to appear but not appearing I found this question App icon does not appear but the answer did not answer.
Use the setDisplayShowHomeEnabled()
method to view the home button space:
getSupportActionBar().setDisplayShowHomeEnabled(true);
Then the setIcon()
method to set the icon you want to view:
getSupportActionBar().setIcon(R.drawable.ic_launcher);
See this answer in gringo OS .