Is there a way to set a Bitmap (representing a contact photo retrieved from the address book) as the home icon in the ActionBarSherlock.
Given your Bitmap bmp just use a BitmapDrawable like this:
Resources res = getResources();
BitmapDrawable icon = new BitmapDrawable(res,bmp);
getSupportActionBar().setIcon(icon);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With