I have the following code:
String[] where; where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER + \"=1\"); where.append(ContactsContract.Contacts.IN_VISIB
I'm not that experienced in Java but I have always been told that arrays are static structures that have a predefined size. You have to use an ArrayList or a Vector or any other dynamic structure.