I’m new in the Android world and I have a very annoying problem.
In my program I use the Android Canvas. I’d like to add an EditText element, or something like that, to get user text inputs. Can you help me find a way to solve this problem?
Thanks for the answers.
Initially, you cannot place any edit text or buttonsusig canvas. Instead, you have to draw it. So create a custom layout and draw that layout with canvas
Try this, It might help you. in
onDraw(..)And take a look at this another example : Click here
It gives another way of adding views