I am implementing Excel for android devices and I am printing EditTexts using baseAdapter and I want to drag data from one EditText to another how can i do this?
Thanks in advance
I am implementing Excel for android devices and I am printing EditTexts using baseAdapter
Share
You can put the EditTexts you have in a relative layout, then implement the EditText on touch listener.
When a user press the EditText create a TextView with the text from EditText, then make drag and drop on the TextView, and if the TextView is being dropped inside another EditText, put the text there.