I have a function which creates EditText control on clicking the view i.e. onMotioEvent function of a view, EditText is created at a particular location.
Using java Syntax Highlighting
- AbsoluteLayout layout = new AbsoluteLayout(Context);
- layout.addView(textTool, new AbsoluteLayout.LayoutParams(
- LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, x, y));
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
Now on certain event i want to remove this control, is there anyway to remove the EditText control from the view.
Helping code is much appreciated.





