I have my own custom keyboard in my app . In the editText box i disabled its onTouch() by returning true
OnTouchListener otl = new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
}
return true;
}
};
This helps in preventing keyboard to popup.But it also disables the touch event, and i am not getting the option to copy paste default feature of android .This scenario is happening in many app but i am not getting any way to do it. Please help.