Frameworks
React Native
Flutter
Package samples
Cookbook
Version 11
Version 10
Version 9
Version 8
Version 7
Version 6
Version 5
When creating a new annotation, the initial properties (such as line thickness, fill color, opacity, etc.) are set to the last value that the user selected for an annotation of that type. For example, if the user changes an ellipse annotation's stroke color from green to red, the next ellipse annotation that the user creates would have a stroke color of red. These default properties are saved in the app's SharedPreferences.
These default properties can be changed programmatically and will take effect the next time when the annotation is created.
For example, to change style properties of a rectangle:
where toolManager
is an instance of ToolManager
.
A table for annotation type and tool mode mapping can be found here: annotation and its creation tool.
Each annotation has a default style that is defined by its creation tool. For example, when you create a Square
annotation using the RectCreate
tool for the first time, the default behavior to draw a rectangle with a red border and a transparent fill color. These default colors can changed through XML attributes.
However the effect will only take place when the app is first loaded.
styles.xml
file. For details on supported style attributes, see Tool Style Attributes.2. Add the style resource to ToolStyleConfig
by calling addDefaultStyleMap(int, int styleRes)
The first parameter of addDefaultStyleMap is an annotation type. You can determine the annotation type from the creator tool by referring to the Table of annotations and its creation tool.
You can also override existing tool's default styles:
Tool | Style attribute resource | Default style resource |
---|---|---|
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
Other |
|
|
styles.xml
. For example, if you want to override the FreehandCreate
tool style, your custom tool style should inherit from AnnotPresetStyle4
.To learn about style inheritance, see: Defining styles and inheritance.
CustomizedToolStyle
) to the tool style attribute that corresponds to the tool style you wish to override. For example, if you want to the override FreehandCreate
tool style, set CustomizedToolStyle
to the attribute freehand_default_style
.To learn about applying custom themes to your application, see: Applying a Theme to an Activity or Application.
####annot_color
Annotation color. For annotations that have an annot_fill_color
, it represents stroke color.
format: color
####annot_text_color
Annotation text color. Used for FreeText annotations.
format: color
annot_fill_color
Annotation fill color. Used for annotations that have fill colors, including Square, Circle, and FreeText.
format: color
annot_font_size
Annotation font size. Used for FreeText annotations.
format: float
annot_text_size_max
Represents a FreeText annotation's maximum font size.
format: float
annot_text_size_min
Represents a FreeText annotation's minimum font size.
format: float
annot_thickness
Annotation thickness for border style
format: float
annot_thickness_max
Annotation maximum thickness
format: float
annot_thickness_min
Annotation minimum thickness
format: float
annot_font
Annotation font. Used for FreeText annotations.
format: string
annot_opacity
Annotation opacity
format: float
annot_icon
Annotation icon. Used for Text annotations.
format: string
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales