Android - Remove Logo on Action Bar for all Activities
1. Open AndroidManifest.xml in project. 2. Find <application> tag. 3. Add a property, android:logo="@android:color/transparent", to <application> like below: <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/my_app_name" android:logo="@android:color/transparent" android:theme="@style/AppTheme" > ...... // your custom code. Follow the steps, you can do it too now. If you want to remove the logo on action bar in specific activity, you should add the property in the specific <activity> you want, not in the <application> tag.