I have a ParseQueryAdapter class, and my items are being retrieved successfully. However, if I have this for loop to view the objects (strings):
for (int i =0;i<adapter.getCount();i++){
Log.d("Ab", adapter.getItem(i).toString());
}
I get these:
com.example.ab_me.example.classname@41ef11f8
com.example.ab_me.example.classname@41ef33d8
com.example.ab_me.example.classname@41ef40c0
Note: For security reasons, I replaced my app name with example
and my classname with classname
.
Why is this? It is supposed to be:
listItem1
listItem2
listItem3
Thanks in advance