Skip to main content
/
Android Dev
/
Contents contributed and discussions participated by Luke Shan
Contents contributed and discussions participated by
Luke Shan
Simple
Middle
Filter:
All
|
Bookmarks
|
Topics
Drawable to Bitmap By Hong
- 8 views
Drawable
Bitmap
started by
Luke Shan
on 27 Mar 10
no follow-up yet
#1
Luke Shan
on 27 Mar 10
Bitmap bitmap = Bitmap.createBitmap(width, height, true);
Drawable iconDrawable = packageManager.getActivityIcon(resolveInfo.activityInfo); Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, width, height);
drawable.draw(canvas);
...
Cancel
1
-
1
of
1
Showing
20
▼
items per page
20
50
100
Luke Shan
Drawable iconDrawable = packageManager.getActivityIcon(resolveInfo.activityInfo); Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, width, height);
drawable.draw(canvas);