I want hide some fields in existed XML and use that XML as Input for Another Activity
Thanks in Advance.....
I want hide some fields in existed XML and use that XML as Input for Another Activity
Thanks in Advance.....
Simply define all fields that are actually in your xml. When you want to hide one (such as a textview) do this:
textview1.setVisibility(View.GONE);
to bring something back use:
textview1.setVisibility(View.Visible);