Removing left arrow from the actionbar in android?

前端 未结 5 1573
孤街浪徒
孤街浪徒 2020-12-14 08:07

I want to remove the left arrow from the action bar and only icon and title needed.

My code:

getSupportActionBar().setIcon(R.drawable.logo);
getSuppo         


        
5条回答
  •  轮回少年
    2020-12-14 08:24

    getActionBar().setHomeAsUpIndicator(R.drawable.action_arrow);
    

    Where action_arrow is a 25x10px transparent png. Same code for sherlock would be:

    getSupportActionBar().setHomeAsUpIndicator(R.drawable.action_arrow);
    

提交回复
热议问题