标签: java android button view relativelayout
我有一个RelativeLayout,我正在尝试从中移除一个视图。我尝试了removeViewAt和removeView,但即使在我调用它们之后,视图仍然存在。你们知道可能出现什么问题吗?
RelativeLayout v = (RelativeLayout)findViewById(R.id.container); Button btn = new Button(this); v.addView(btn); v.removeView(btn);