我尝试使组件在单击按钮时不可见,但是这会使我的应用程序在单击按钮后立即停止

时间:2018-11-13 17:07:11

标签: android android-studio

我尝试使组件不可见,但是在单击按钮后。我的应用程序立即停止 I have an array like this

I try to make components to disappear like this

1 个答案:

答案 0 :(得分:0)

您的循环超出了范围,因为您的数组中有6个元素,并且您要从0迭代到6(这是七个迭代)

替换:

flag=False

与此:

SimpleModelWithFK

甚至更好:

for (int i = 0; i < 7; i++) {
   findViewById(groupSong2[i]).setVisibility(View.INVISIBLE)
}