Did you find this guide helpful?
Some test text!
Android / Guides / Set tool mode
When setting up the ToolManager, the default Tool is the Pan Tool.
To change the tool, use ToolManager.setTool(ToolManager.Tool) API.
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);Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales