When an EditText has a focus, I want to select all text inside by default, but it doesn't work:
editText.setOnFocusChangeListener(new OnFocusChangeListener() {
            @Override
            public void onFocusChange(View view, boolean hasFocus) {
                if (hasFocus) {
                  // Go to the end
            editText.setSelection(getEditTextView().getText().length());
                    // Select all the content
                    editText.selectAll();
                }
            }
        });
Thank you very much guys!
 
    