removeViewAt不起作用

时间:2014-11-03 00:13:38

标签: 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);

0 个答案:

没有答案