how to clear LinearLayout from object android studio code example
Example: android clear linearlayout content
LinearLayout ll = (LinearLayout) findViewById(R.id.myid);
ll.removeAllViews();
LinearLayout ll = (LinearLayout) findViewById(R.id.myid);
ll.removeAllViews();