Did you find this guide helpful?
Some test text!
Android / Guides / Set tool mode
Platform
Documentation
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