May I know 'Is it possible to limit Aviary photo editing features'. For instance, I wanna use only adding text feature.

Probably, stupid question. But I cannot find anywhere about that information.

有帮助吗?

解决方案

With the Aviary SDK for Android, you can limit the tools that are available when you start the intent to open the editor activity. You add them as an extra to the intent. So, for your case, it would be:

String[] tools = new String[] { "TEXT" };
Intent aviaryIntent = new Intent(activity, FeatherActivity.class);
aviaryIntent.setData(data);
aviaryIntent.putExtra(Constants.EXTRA_TOOLS_LIST, tools);
startActivityForResult(aviaryIntent, REQUEST_AVIARY);

Customize to your needs, but the key is adding a string array of pre-defined tool names to the intent.

Documentation found here

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top