Search:

Type: Posts; User: ProgrammablePeter

Search: Search took 0.10 seconds.

  1. Re: ArrayIndexOutOfBounds in Android - help with debuuging

    I cracked the problem. It was occurring at line 62:
    friendList.add(new Friend(nameBlock[i], descBlock[i], imageBlock[i]));

    The reason: I have an xml. string-array that had 1 value. And I was...
  2. ArrayIndexOutOfBounds in Android - help with debuuging

    public class MainActivity extends ListActivity {
    private ArrayList<Friend> friendList;
    private EditText et;
    private int[] imageBlock;
    private String[] nameBlock;
    private String[] descBlock;...
Results 1 to 2 of 2