向 PE SDK 添加自定义按钮 UI
Adding custom button to PE SDK UI
我很难找到有关如何扩展默认 PhotoEditor SDK 的信息。我需要在取消和接受按钮所在的默认 UI 面板中添加一个按钮。有什么办法吗?
感谢您的帮助!
是的,你可以。
扩展视图 Class ly.img.android.ui.widgets.ImgLyTitleBar
重载此布局(这意味着,将此布局放在您的 Application res 文件夹中而不重命名)并将 ly.img.android.ui.widgets.ImgLyTitleBar 替换为您的 class。
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 中扩展 class。
最好的,
斯文
我很难找到有关如何扩展默认 PhotoEditor SDK 的信息。我需要在取消和接受按钮所在的默认 UI 面板中添加一个按钮。有什么办法吗? 感谢您的帮助!
是的,你可以。
扩展视图 Class ly.img.android.ui.widgets.ImgLyTitleBar
重载此布局(这意味着,将此布局放在您的 Application res 文件夹中而不重命名)并将 ly.img.android.ui.widgets.ImgLyTitleBar 替换为您的 class。 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 中扩展 class。
最好的, 斯文