Removing left arrow from the actionbar in android?

前端 未结 5 1570
孤街浪徒
孤街浪徒 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:13

    In AndroidManifest.xml

    remove the below code, which will remove back button from your ActionBar

    android:parentActivityName=".Main.MainActivity">
    
    

    Just keep it like below:

    
    
    

提交回复
热议问题