Is it possible to convert string text that is inside an EditText box into a Bitmap? In other words, is there any way to convert string text into a Bitmap that m
EditText
For only String I don't know but,
You will get Bitmap image of the whole EditText not only String with this,
Bitmap image of the whole EditText
mEditText.setCursorVisible(false); mEditText.buildDrawingCache(); Bitmap bmp = Bitmap.createBitmap(mEditText.getDrawingCache());