I got a RelativeLayout and I'm trying to remove a view from it. I tried removeViewAt and removeView but the view is still there even after I call them. Do you guys know what could be wrong?
RelativeLayout v = (RelativeLayout)findViewById(R.id.container);
Button btn = new Button(this);
v.addView(btn);
v.removeView(btn);