Some test text!

Discord Logo

Chat with us

PDFTron is now Apryse, learn more here.

Android / Guides / Set tool mode

Platform


PDFTron is now Apryse, learn more here.

Change & set default tool mode

When setting up the ToolManager, the default Tool is the Pan Tool. To change the tool, use ToolManager.setTool(ToolManager.Tool) API.

For example, to switch to the Text Highlighting tool, do the following:

mToolManager.setTool(mToolManager.createTool(ToolMode.TEXT_HIGHLIGHT, mToolManager.getTool()));

To continuously using the same tool, do:

Tool tool = mToolManager.createTool(ToolMode.TEXT_HIGHLIGHT, mToolManager.getTool())
((Tool) tool).setForceSameNextToolMode(true)
mToolManager.setTool(tool);

Get the answers you need: Support