Skip to content Skip to sidebar Skip to footer

OnClickListener Listens Only On The Second Time

I have an editText and have added an onClickListener to it. In the click method I am just clearing the text. When I click the editText first time the keypad pops up. But it is not

Solution 1:

How about focus?

final EditText qtyEditTxt= (EditText) findViewById(R.id.qtyet);
qtyEditTxt.setOnFocusChangeListener(new OnFocusChangeListener()
{
    @Override
    public void onFocusChange(View v, boolean isFocus) 
    {
        if (isFocus)
        {
            qtyEditTxt.setText("");             
        }
    }
});

Edited:

Default text? There you go :)

android:hint="Enter Quantity"

Solution 2:


Solution 3:

ClickListener is not a good choice for editText . use

editText.setOnEditorActionListener(new TextWatcher() {

            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub

            }

            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
                // TODO Auto-generated method stub

            }

            public void afterTextChanged(Editable s) {
                // TODO Auto-generated method stub

            }
        })
    }

Post a Comment for "OnClickListener Listens Only On The Second Time"