Created fields in which data are displayed, erased default text from them,
and they are not visible, but here is a field whose background: drawable / back.xml is not hidden. How to hide it?

What about the visibility property? View has 3 visibility states:
You can programmatically set it like this:
TextView text = (TextView)findViewById(R.id.textView); text.setVisibility(View.GONE); ListView ? and better show the layout of this screen. - tim_tallerSource: https://ru.stackoverflow.com/questions/309586/
All Articles