Skip to content

Instantly share code, notes, and snippets.

const int last = pics_array.length - 1;
// this method gets called when the forward button got clicked (for testing)
public void go (View view) {
index++;
if(index > last)//out of bounds
index = 0;//jump to beginning
default_Pic.setImageResource(pics_array[index]);
}