如何从百鸟编辑器删除页脚? [英] How to remove Footer from Aviary Editor?

查看:295
本文介绍了如何从百鸟编辑器删除页脚?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我工作的一个简单的图像编辑器。百鸟的注册为百鸟图像编辑器SDK是禁用,它目前正在与Adobe的创意SDK到来。毫无疑问,他们提供了这么多的功能,但他们不是为我简单的图像编辑器有用的。

I'm working on an simple image editor. Aviary's Signup for Aviary Image Editor SDK is disable and it is now coming with Adobe's Creative Sdk. No doubt they are providing so much features, But they are not useful for my simple image editor.

我只想使用一些图像编辑工具,如作物和方向。所以我写了下面的code在我MainActivity。

I just want to use some image editing tools like crop and orientation. So I have written the below code in my MainActivity.

    String[] tools = new String[] { "CROP", "ORIENTATION" };        
    Intent newIntent = new AviaryIntent.Builder(this)
            .setData(imageUri)                            // input image src
            .withOutput(Uri.parse("file://" + "abc.jpg")) // output file
            .withOutputFormat(Bitmap.CompressFormat.JPEG) // output format
            .withOutputSize(MegaPixels.Mp5)               // output size
            .withOutputQuality(90)                        // output quality
            .build();
    newIntent.putExtra(Constants.EXTRA_TOOLS_LIST, tools);
    startActivityForResult(newIntent, 1);

问题是,我想删除创意云连接在编辑器中的页脚链接。
请提供一些解决方案。

The problem is, I want to remove Creative Cloud Connected link in the footer of the editor. Please provide some solution.

谢谢...

推荐答案

正如我已经与Creative SDK的工作,我只学会了如何自定义百鸟编辑器的UI。

As I have worked with Creative SDK, I just learned how to customize UI of the Aviary Editor.

通过重写XML文件,你可以在百鸟编辑的用户界面的变化。

By overriding xml files, you can make changes in Aviary Editor's UI.

我有一个简单的例子下面,我在做编辑的页脚一些变化。我刚刚创建的应用程序模块新的XML文件 aviary_bottombar.xml 如下...

I have a simple example below, I made some changes in editor's footer. I just created new xml file aviary_bottombar.xml in app module as following...

重写XML应用程序中的模块文件

您可以找到原实 exploaded-AAR 如下图所示的SDK目录...

You can find the original implementation in exploaded-aar directory of sdk as shown below...

引爆阿勒创意的SDK文件

希望这会帮助别人...

Hope it will help somebody...

这篇关于如何从百鸟编辑器删除页脚?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆