ANDROID APP

Android Tutorial #5: Add App Icon to Motion Bar



Supply Code: https://www.patreon.com/clientuser_net

We lastly get round to flexing our coding muscular tissues.

Right here we cowl the mysterious lacking Motion Bar Icon in Android Lollipop, utilization is being discouraged in android model Lollipop and above.

By no means thoughts! I present you right here the best way to add your App Icon to your Motion Bar, and in addition cowl a few suggestions n tips for the Android Studio growth atmosphere.

If you happen to’re impatient right here is the code used, watch the video for those who want extra assist.

ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setIcon(R.mipmap.ic_launcher);

Extra information on the motion bar right here…

http://developer.android.com/information/matters/ui/actionbar.html

source