我有3个视图,我在启动时使用for循环堆叠在一起:
for (int i = 0; i < 3; i++) {
LayoutInflater inflate = (LayoutInflater) m_context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View m_view = inflate.inflate(R.layout.custom_layout, null);
//load things into view
}
最后加载的视图(第3个视图)是我在手机屏幕上看到的视图。如果用户执行操作,则使用以下命令删除第3个视图:
parentView.removeView(m_view);
现在我看到了第二个视图。如何在第一个视图后面添加一个视图,以便我在屏幕上总是有3个视图?我知道最后加载的视图始终是用户将看到的视图。