2

有没有办法将位图(代表从通讯录中检索到的联系人照片)设置为 ActionBarSherlock 中的主页图标。

4

1 回答 1

11

鉴于您Bitmap bmp只是使用BitmapDrawable这样的:

Resources res = getResources();
BitmapDrawable icon = new BitmapDrawable(res,bmp);
getSupportActionBar().setIcon(icon);
于 2013-05-12T14:14:18.133 回答