DatabaseManager_For_Android icon indicating copy to clipboard operation
DatabaseManager_For_Android copied to clipboard

Next page problem

Open ghost opened this issue 7 years ago • 0 comments

Hi, there's a problem on click next page when recordcount is equal to maxrecords per page in paginatetable function. I changed it to:

final Cursor c3 = indexInfo.maincursor; indexInfo.numberofpages=(int) Math.ceil(((double)c3.getCount()/10)); //10 is max. records

And works. Regards.

ghost avatar Feb 23 '18 10:02 ghost