How do I make my editText what is written in, get written on the Bitmap
I found this code, but it doesn’t work
EditText et = (EditText) findViewById(R.id.etWrite);
Bitmap b = Bitmap.createBitmap(500,500,Bitmap.Config.Alpha_8);
Canvas c = new Canvas(b);
et.draw(c);
I think I should use currentBitmap I think, I tried but it doesn’t work
Try something like I show you blow:
Hope it works!