I would like to add an icon in status bar. I tried-
getActionBar().setIcon(R.drawable.my_icon); //crashes app
getSupportActionBar().setIcon(R.drawable.ic_statusbar_msg); //not working
<activity android:icon="@drawable/my_icon" /> //also not working
<application android:logo="@drawable/Image"> //still not working
Icon is not shown on action bar. Any idea?