Dominik Seemayr
Dominik Seemayr

Reputation: 889

Delete all Views out of a LinearLayout (Android)

So, I've got a LinearLayout svLv = ...; where there are some TextViews in(generated dynamically).

All I need is a Method public void clearEvents(LinearLayout svLv){...} which deletes all Views in svLv. So after I call the Method there are no Views left in. I have really no Idea how to do this and if this is even possible, because I couldn't find an answer after a bit research on StackOverflow.

I hope you understand what I am looking for. Thank you for your answers in before!

Upvotes: 1

Views: 3212

Answers (1)

Pratik Dasa
Pratik Dasa

Reputation: 7439

I think you can try with :

svLv.removeAllViews();
svLv.invalidate();

Above method will remove all your views.

Upvotes: 2

Related Questions