in android studio i use code below(ie):
for (i=0;i,5;i++){
textView[i].setVisibility(INVISIBLE);
}
instead of:
textView1.setVisibility(INVISIBLE);
textView2.setVisibility(INVISIBLE);
textView3.setVisibility(INVISIBLE);
textView4.setVisibility(INVISIBLE);
textView5.setVisibility(INVISIBLE);
and Mywork gets easier and the number of codes gets lower .in appinventor Can I use the same code?use of loop and array together.