How to make an editfield
<EditText
android:id="@+id/etText"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<requestFocus />
</EditText>
what is written in it , gets written on the imageview using Canvas ?
I saw many codes and ways , but they are for auto write on the canvas or bitmap their copyrights .. I want what is typed in the editfield gets typed on the canvas ..
there are two ways to achieve this,
1 – using Canvas.drawText method, example:
2 -using editText.draw method (recommended)
hope it helps, if you have any questions just leave a comment