OK, I've found a possible way to do it, based on this link :
public static Bitmap drawToBitmap(Context context,final int layoutResId,
final int width,final int height)
{
final Bitmap bmp = Bitmap.createBitmap(width,height,Bitmap.Config.ARGB_8888);
final Canvas canvas = new Canvas(bmp);
final LayoutInflater inflater =
(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View layout = inflater.inflate(layoutResId,null);
layout.setDrawingCacheEnabled(true);
layout.measure(
MeasureSpec.makeMeasureSpec(canvas.getWidth(),MeasureSpec.EXACTLY),
MeasureSpec.makeMeasureSpec(canvas.getHeight(),MeasureSpec.EXACTLY));
layout.layout(0,0,layout.getMeasuredWidth(),layout.getMeasuredHeight());
canvas.drawBitmap(layout.getDrawingCache(),0,0,new Paint());
return bmp;
}
Example of usage:
public class MainActivity extends ActionBarActivity
{
@Override
protected void onCreate(final Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ImageView iv = (ImageView)findViewById(R.id.image);
final DisplayMetrics metrics = getResources().getDisplayMetrics();
final Bitmap b = drawToBitmap(this,R.layout.test, metrics.widthPixels,
metrics.heightPixels);
iv.setImageBitmap(b);
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…