我想知道如何检查if语句是否存在scrollView。用于创建scollView的当前代码如下。任何帮助将不胜感激:)
代码:
public void tickBox(int i){
//Create GUI
LinearLayout mainView = (LinearLayout) findViewById(R.id.MainLayout);
ScrollView sc = new ScrollView(this);
sc.setId(i + 100);
if (/*If statement to be made*/){
mainView.addView(sc);
}
//My other code
}
答案 0 :(得分:4)
它可以是:
if (mainView.findViewById(i + 100) == null){
mainView.addView(sc);
}
答案 1 :(得分:1)
if ( sc != null ) {
mainView.addView(sc);
}