繁体   English   中英

如何在Android中自定义共享菜单?

[英]How to customize share menu in android?

我需要共享图像并在android共享菜单中添加“保存图像”项,我在9gag应用程序中看到了类似的内容,他们在共享菜单中有“保存”项,并且共享菜单似乎是最底层。 但是如何实现呢? 在此处输入图片说明

我做了什么:我在清单中添加了带有意图过滤器的空活动,这会启动服务,并且该服务下载图像

<activity
            android:name=".model.services.ShareActivity"
            android:icon="@drawable/download_icon"
            android:label="Save">
            <intent-filter
                android:label="Save"
                android:icon="@drawable/download_icon">
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="image/*"/>
            </intent-filter>
        </activity>

现在我在共享菜单中有此图标,它可以工作,但是该图标也出现在其他应用程序的共享菜单中,我只需要在我的应用程序中显示它,如何将其设为私有?

好的,我找到了解决方案。 首先-我们需要可以处理图像保存意图的活动,该活动可以启动服务或其他功能。 我是这样的:

public class ShareActivity extends Activity {
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Bundle extras = getIntent().getExtras();
        String url = extras.getString("url");
        String name = extras.getString("name");
        String description = extras.getString("description");
        SaveImageService.downloadFile(url, name, description);
        finish();
    }
}

其中SaveImageService具有用于将图像保存到SD卡的静态方法。其次,我们需要在清单中添加一些文本:

    <activity
        android:name=".model.services.ShareActivity"
        android:icon="@drawable/download_icon"
        android:label="Save">
        <intent-filter
            android:label="Save"
            android:icon="@drawable/download_icon">
            <action android:name="com.my_app.random_text.SAVE_IMAGE" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="image/*"/>
        </intent-filter>
    </activity>

在这里,意图过滤器具有自定义操作(这很重要),该自定义操作只是一些字符串,而不是应用程序包之类的东西(我之所以使用包名,是因为我喜欢它)。 接下来,我们需要添加此活动以共享菜单列表:

这将获得位图Uri,以便在ImageView中与其他应用共享

// Returns the URI path to the Bitmap displayed in specified ImageView
    static public Uri getLocalBitmapUri(ImageView imageView) {
        // Extract Bitmap from ImageView drawable
        Drawable drawable = imageView.getDrawable();
        Bitmap bmp = null;
        if (drawable instanceof BitmapDrawable) {
            bmp = ((BitmapDrawable) imageView.getDrawable()).getBitmap();
        } else {
            return null;
        }
        // Store image to default external storage directory
        Uri bmpUri = null;
        try {
            File file = new File(Environment.getExternalStoragePublicDirectory(
                    Environment.DIRECTORY_DOWNLOADS), "share_image_" + System.currentTimeMillis() + ".png");
            file.getParentFile().mkdirs();
            FileOutputStream out = new FileOutputStream(file);
            bmp.compress(Bitmap.CompressFormat.JPEG, 80, out);
            out.close();
            bmpUri = Uri.fromFile(file);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return bmpUri;
    }

这将收集所有可以共享图像的应用程序以及我们保存图像的意图

public void shareExcludingApp(Context ctx, PhotoView snapImage) {
        // Get access to the URI for the bitmap
        Uri bmpUri = ShareTool.getLocalBitmapUri(snapImage);
        if (bmpUri == null) return;

        List<Intent> targetedShareIntents = new ArrayList<>();
        //get all apps which can handle such intent
        List<ResolveInfo> resInfo = ctx.getPackageManager().queryIntentActivities(createShareIntent(bmpUri), 0);
        if (!resInfo.isEmpty()) {
            for (ResolveInfo info : resInfo) {
                Intent targetedShare = createShareIntent(bmpUri);
                //add all apps excluding android system and ourselves
                if (!info.activityInfo.packageName.equals(getContext().getPackageName())
                        && !info.activityInfo.packageName.contains("com.android")) {
                    targetedShare.setPackage(info.activityInfo.packageName);
                    targetedShare.setClassName(
                            info.activityInfo.packageName,
                            info.activityInfo.name);
                    targetedShareIntents.add(targetedShare);
                }
            }
        }
        //our local save feature will appear in share menu, intent action SAVE_IMAGE in manifest
        Intent targetedShare = new Intent("com.my_app.random_text.SAVE_IMAGE"); //this is that string from manifest!
        targetedShare.putExtra(Intent.EXTRA_STREAM, bmpUri);
        targetedShare.setType("image/*");
        targetedShare.setPackage(getContext().getPackageName());
        targetedShare.putExtra("url", iSnapViewPresenter.getSnapUrlForSave());
        targetedShare.putExtra("name", iSnapViewPresenter.getSnapNameForSave());
        targetedShare.putExtra("description", iSnapViewPresenter.getSnapDescriptionForSave());
        targetedShareIntents.add(targetedShare);

        //collect all this intents in one list
        Intent chooserIntent = Intent.createChooser(targetedShareIntents.remove(0),
                "Share Image");

        chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS,
                targetedShareIntents.toArray(new Parcelable[targetedShareIntents.size()]));

        ctx.startActivity(chooserIntent);
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM