I want to add a prefilled text like country code in an edittext for mobile number. Prefilled text should be uneditable. I have tried it by overriding onSelectionChanged(). Is there any better solution?
final EditText editText = new EditText(this){
int prevSelection;
@Override
protected void onSelectionChanged(int selStart, int selEnd) {
if(selStart < 4){
setSelection(prevSelection);
return;
}
prevSelection = selStart;
}
};