I don't know if this is possible but I am looking for a way to display a toast message after clicking on edittext.
I tried this but it didn't work:
editText1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(RectangleWidth.this, "message here", Toast.LENGTH_SHORT).show();
return;
}
});