I make project like this : Fetch Messages from Inbox
Part of code :
while (cursor.moveToNext())
{
String address = cursor.getString(1);
String body = cursor.getString(3);
// Loading too long
System.out.println("======> Mobile number => "+address);
System.out.println("=====> SMS Text => "+body);
sms.add("Address=> "+address+"\n SMS => "+body);
}
return sms;
But, there are too many message and need long time to show. While loding i want to show the animation (progressbar)
Thanks you...