I have a section of code where I want to change the text showing in a textView when the user selects an EditText box.
The problem I am having is that the textView only changes when I double click the EditText box, one click and there is no change to the textView.
Is there another click listener that I should be using?
final EditText box0105 = (EditText)findViewById(R.id.box0105);
final TextView txtHint = (TextView)findViewById(R.id.txtHint);
box0105.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
txtHint.setText(onOneClick);
}
});
Add android:focusableInTouchMode="false"
in EditText xml then EditText will accept single click
Try setting OnTouchListener
rather than OnClickListener
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With