Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将位图(代表从通讯录中检索到的联系人照片)设置为 ActionBarSherlock 中的主页图标。
鉴于您Bitmap bmp只是使用BitmapDrawable这样的:
Bitmap
bmp
BitmapDrawable
Resources res = getResources(); BitmapDrawable icon = new BitmapDrawable(res,bmp); getSupportActionBar().setIcon(icon);