I got following lines of code:
for (int i = 0; i < articles.length(); i++) {
static {
addItem(new JsonParserItem("1", R.drawable.p1, "asd", "Steve Jobs", "Focusing is about saying No."));
}
}
After static I get a red marker (error) which tells me
identifier or type expected
how can I solve this