In my activity I would like a TextView to appear below a checkbox once the checkbox has been clicked. How should I do this. Do I need to create a new activity that will display the new TextView below the checkbox. Or can I just use the same activity as before to accomplish this.
Thanks!
you can do it in same activity
in the xml create the TextView below CheckBox and
yourTextView.visibility=gonein your class write the following code :