我很难找到如何扩展默认 PhotoEditor SDK 的信息。我需要在取消和接受按钮所在的默认 UI 面板中添加一个按钮。有没有办法做到这一点?谢谢您的帮助!
问问题
379 次
1 回答
1
是的你可以。
扩展视图类 ly.img.android.ui.widgets.ImgLyTitleBar
重载此布局(这意味着,将此布局放在您的 Application res 文件夹中而不重命名它)并将 ly.img.android.ui.widgets.ImgLyTitleBar 替换为您的类。 https://github.com/imgly/pesdk-android-demo/blob/master/default_res_files/res/layout/imgly_activity_photo_editor.xml
添加您的按钮,通过重载此布局 https://github.com/imgly/pesdk-android-demo/blob/master/default_res_files/res/layout/imgly_widget_actionbar.xml
在您的 ImgLyTitleBar 扩展类中添加您的按钮逻辑。
最好的,斯文
于 2017-12-18T15:14:21.607 回答