-3
I’m beginner and I’m not able to fix what’s in red in the image when I changed the code changed color but in Android Studio like this https://i.stack.Imgur.com/SCAR6.jpg
public class MainActivity extends Activity {
private ViewManager l;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String s = "";
for (int i = 1; i <= 45; i +=6) {
TextView t = new TextView(this);
t.setText(s);
l.addView(t);
}
int x = 2;
do {
Button b = new Button(this);
b.setText(x);
l.addView(b);
if (x == 7 && x == 13 && x == 19)
continue;
} while (x <= 24);
}
}
Sandra, please replace your image with the written code, so anyone who wants to help you, can copy your code to analyze it more easily.
– MarioAleo