我想知道如何检查 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
}