You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hrishikesh Kadam edited this page May 4, 2018
·
6 revisions
Receive Highlight Events
You can get highlight event in your main application when a new highlight is added, removed or modified.
the data in the highlight is received as Highlight and its respective action as HighlightAction
folioReader.setOnHighlightListener(newOnHighlightListener() {
@OverridepublicvoidonHighlight(HighLighthighlight, HighLight.HighLightActiontype) {
// Do something with the received highlight
}
);
Once done with folioReader object don't forget to call static method clear() of FolioReader class -