I’m making a kind of survey app using android and I need to clear the screen to post new questions. Needless to say I cannot keep creating those many activities. I want the flow to go like
Question -> clear screen -> next question and so on.
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can use the
removeView()orremoveAllViewsInLayout()functions in ViewGroup to remove views from your layout. ViewParent and ViewGroup in general can’t remove views, so you need to cast it to a layout to do that.here’s the documentation –
removeView(android.view.View)
removeAllViewsInLayout()