如何制作一个画廊?

时间:2016-03-17 00:47:53

标签: android android-studio aviary adobecreativesdk

你好:)我花了好几个月的问题,我已经阅读了文档。

https://creativesdk.adobe.com/docs/android/#/articles/gettingstarted/index.html

My application

图片已连接到网址:/

我想知道如何设置图库,用户可以选择图像,以便您可以编辑,相同的相机。

2 个答案:

答案 0 :(得分:3)

您可以从Google图库中学习,这里是源代码https://android.googlesource.com/platform/packages/apps/Gallery2/

答案 1 :(得分:2)

启动图库

如果要从设备的图库中选择图像,可以执行以下操作:

Intent galleryPickerIntent = new Intent();
galleryPickerIntent.setType("image/*");
galleryPickerIntent.setAction(Intent.ACTION_GET_CONTENT);

startActivityForResult(Intent.createChooser(galleryPickerIntent, "Select an Image"), 203); // Can be any int

这会启动我们希望为我们提供某种结果的新活动(在这种情况下,它将是图像Uri)。

一个常见的用例是在用户点击按钮时启动图库:

View.OnClickListener openGalleryButtonListener = new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        Intent galleryPickerIntent = new Intent();
        galleryPickerIntent.setType("image/*");
        galleryPickerIntent.setAction(Intent.ACTION_GET_CONTENT);

        startActivityForResult(Intent.createChooser(galleryPickerIntent, "Select an Image"), 203); // Can be any int
    }
};
mOpenGalleryButton.setOnClickListener(openGalleryButtonListener);

此代码将直接打开图库,或首先向用户显示一个选择器,让他们选择将哪个应用程序用作图像源。

收到结果

要接收用户选择的图片,我们将使用onActivityResult()方法:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    mAuthSessionHelper.onActivityResult(requestCode, resultCode, data);

    if (resultCode == RESULT_OK && requestCode == 203) { // the int we used for startActivityForResult()

        // You can do anything here. This is just an example.
        mSelectedImageUri = data.getData();
        mSelectedImageView.setImageURI(mSelectedImageUri);

    }
}

我在if块中添加了一些示例代码,但您在那里执行的操作将取决于您的应用。