Foxit PDF SDK for Android

How to highlight links and set link highlight color in PDF documents?

The UIExtensionsManager.enableLinkHighlight() interface is provided to set whether to enable highlighting the links in PDF documents. By default, the links in PDF documents will be highlighted. If you do not want to highlight links, please set the parameter to “false” as follows:

// Assume you have already Initialized a UIExtensionsManager object 
uiExtensionsManager.enableLinkHighlight(false);

The UIExtensionsManager.setLinkHighlightColor() interface is used to set the highlight color. Please make sure you have not disabled highlighting links. Following is a sample for calling this API:

// Assume you have already Initialized a UIExtensionsManager object 
uiExtensionsManager.setLinkHighlightColor(0x4b0000ff);

Updated on August 29, 2018

Was this article helpful?
Thanks for your feedback. If you have a comment on how to improve the article, you can write it here: