How I can clear the value of TextView?
If you would like for your hints to show in the fields, don't set the TextView text to an empty string; instead, set it to null.
TextView myTextView = (TextView) findViewById(R.id.myTextView);
myTextView.setText(null);
TextView myTextView = (TextView) findViewById(R.id.myTextView);
myTextView.setText("");