Reputation: 1170
I am getting this error when i m trying to get list of data from table by calling constructor from another class, my main file is
Account.java
try{
List<PersonalInformation> temp = helper.findAll();
Toast.makeText(getApplicationContext(), temp.size(), Toast.LENGTH_LONG).show();
}
catch (Exception e) {
Toast.makeText(getApplicationContext(), e+"", Toast.LENGTH_LONG).show();
}
Upvotes: 2
Views: 5980
Reputation: 40193
Change
Toast.makeText(getApplicationContext(), temp.size(), Toast.LENGTH_LONG).show();
to
Toast.makeText(getApplicationContext(), String.valueOf(temp.size()), Toast.LENGTH_LONG).show();
Upvotes: 10