我有一个正常启动 Adobe Image Editor 的 Android 应用程序。
Intent imageEditorIntent = new AdobeImageIntent.Builder(mContext)
.setData(selectedImageUri)
.withToolList(tools)
.withOutput(new File(lastSavedFilePath))
.build();
startActivityForResult(imageEditorIntent, 2);
我想集成 Typekit 以进行字体选择,因为我看到 Aviary 应用程序会在您选择“文本”工具时自动让您从 typekit 中选择字体。我找不到有关此的文档。我能找到的最接近的事情是将 TypeKit UI 添加到我自己的活动中,但这并不是我想要做的