I am using customSearch() method suggested by the team . But still it is not returning anything.
finder.GetCount() method is returning 0 for all the pages.
method used
for (int i = 0; i < doc.GetPageCount(); i++) {
// get page
Page page = doc.GetPage(i);
page.ObjsStart();
// find in page
Page.Finder finder = page.FindOpen(search, caseSensitive, wholeWord);
// manage each search term contained in this page
for (int c = 0; c < finder.GetCount(); c++) {
// start position
int firstCharPos = finder.GetFirstChar(c);
Log.w("---search---", "Page " + i);
Log.w("---search---", "Pos : " + firstCharPos);
// do custom actions
}
// close page
page.Close();
}