在我的片段类中,我有条件地以编程方式将子视图元素添加到我的布局中:
LinearLayout child = (LinearLayout) inflater.inflate(R.layout.child_view, null);
LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT,100);
container.addView(child, params);
由于上面的代码将有条件地运行,所以,在某些时候,我想检查是否添加了子视图,如何以编程方式进行检查?