私はビットマップにビューをレンダリングし、ビットマップを保存したいと考えています。 しかし、私はすべてオフスクリーンでそれを行う必要があります。Androidでビットマップからビットマップにオフスクリーンをレンダリングする
私はこれを試してみた:
LayoutInflater inflater = getLayoutInflater();
View linearview = (View) findViewById(R.id.linearview);
linearview = inflater.inflate(R.layout.intro, null);
Bitmap bm = Bitmap.createBitmap(linearview.getMeasuredWidth(), linearview.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(bm);
linearview.layout(0, 0, linearview.getLayoutParams().width, linearview.getLayoutParams().height);
linearview.draw(c);
String extStorageDirectory = Environment.getExternalStorageState().toString();
extStorageDirectory = Environment.getExternalStorageDirectory().toString();
OutputStream outStream = null;
File file = new File(extStorageDirectory, "screen1.PNG");
try {
outStream = new FileOutputStream(file);
bm.compress(Bitmap.CompressFormat.PNG, 100, outStream);
outStream.flush();
outStream.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
EDIT: マイアプリのクラッシュビューdoesntのは、任意の幅または高さを持っているので。 (対策はそれを修正しようとしている)
そして悪い英語のためにsrry。
クラッシュについて尋ねるとき – jqpubliq
iが設定することができますどのようにサービス –
でそれを行うあなたは常にあなたのトレースを投稿する必要がありますサービスへのレイアウト? –