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); } });
Advertisement
Answer
Try setting OnTouchListener
rather than OnClickListener