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);