I want to open image editor with not limited crop tool at the one point and i want to open image editor with the square crop item only at the another point at the one application.
I can set crop tool items for a whole application but not for a call.
Update 1:
I want to use all tools for both editor calls, but i want to limit the list of crop values for the one call and do not limit for another. I can limit the crop items by override the com_adobe_image_editor_crop_labels / com_adobe_image_editor_crop_values resources arrays, but this limitiation applys for both calls.
So, i want to use this limitation for the one editor call:
<string-array name="com_adobe_image_editor_crop_labels">
<item>@string/feather_original</item>
<item>@string/feather_square</item>
<item>@string/feather_custom</item>
<item>3:2</item>
<item>4:3</item>
<item>5:3</item>
<item>5:4</item>
<item>6:4</item>
<item>6:5</item>
<item>7:5</item>
<item>14:11</item>
<item>16:9</item>
<item>16:10</item>
<item>2.35:1</item>
</string-array>
<string-array name="com_adobe_image_editor_crop_values">
<item>-1:-1</item>
<item>1:1</item>
<item>0:0</item>
<item>3:2</item>
<item>4:3</item>
<item>5:3</item>
<item>5:4</item>
<item>6:4</item>
<item>6:5</item>
<item>7:5</item>
<item>14:11</item>
<item>16:9</item>
<item>16:10</item>
<item>235:100</item>
</string-array>
And this values for another editor call:
<string-array name="com_adobe_image_editor_crop_labels">
<item>@string/feather_square</item>
</string-array>
<string-array name="com_adobe_image_editor_crop_values">
<item>1:1</item>
</string-array>
Can i do this?