简短的问题:
假设我有某种布局文件并且我给它充气(或者在代码中使用正常的CTOR)。
我希望在某些限制下(给定的宽度和高度,甚至大于屏幕)拍摄“截图”(位图),而不是显示膨胀的视图。
我不希望将视图添加到屏幕上的任何位置,但只是为了这个目的而保留它,并且可能稍后添加它。
这样的事情可以用于轻松操纵如何放置东西。例如,我可以使用一个布局,将图像放在其中,以便它周围有一个框架。
这样的事情可能吗?如果是这样,怎么样?
答案 0 :(得分:9)
好的,基于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;
}
使用示例:
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);
}
}