APP之间共享数据(一)

作者: Big不吃鱼 | 来源:发表于2017-01-04 11:02 被阅读316次

传递Text数据

如果有安装过的多个APP能够匹配ACTION_SEND这个action并且能够接受MIME TYPE为text/plain,则系统会弹出选择框允许用户选择想要传递给的APP。

ShareText.png

代码如下:

        Intent sendIntent = new Intent();
        sendIntent.setAction(Intent.ACTION_SEND);
        sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
        sendIntent.setType("text/plain");
        startActivity(sendIntent);

如果想总是显示出多个匹配的应用的选择框,可以使用Intent.createChooser(),这样可以保证即使之前已经对这个action做出过默认选择,仍然会显示一个选择框。可以通过createChooser指定一个title。
代码如下:

        Intent sendIntent = new Intent();
        sendIntent.setAction(Intent.ACTION_SEND);
        sendIntent.putExtra(Intent.EXTRA_TEXT,"This is my text to send.");
        sendIntent.setType("text/plain");
        startActivity(Intent.createChooser(sendIntent,getResources().getString(R.id.send_to)));

传递二进制数据

向EXTRA_STREAM传递data的Uri即可传递二进制的数据,该方法通常用来分享Image。
代码如下:

        Intent shareIntent = new Intent();
        shareIntent.setAction(Intent.ACTION_SEND);
        shareIntent.putExtra(Intent.EXTRA_STREAM, uriToImage);
        shareIntent.setType("image/jpeg");
        startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.send_to)));

传递多条数据集

使用ACTION_SEND_MULTIPLE这个action来传递多条数据。
代码如下:

       ArrayList<Uri> imageUris = new ArrayList<Uri>();
       imageUris.add(imageUri1);
       imageUris.add(imageUri2);

       Intent shareIntent = new Intent();
       shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
       shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
       shareIntent.setType("image/*");
       startActivity(Intent.createChooser(shareIntent, "Share images to .."));

接收数据(从其他APP)

Update Your Manifest

使用<intent-filter>元素在Manifest里注册,可以指定接收特定类型的数据,假如你想接收的text类型和任何类型的单张图片或者多张图片,你可以向这样定义你的manifest:

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
            
            <intent-filter>
                <action android:name="android.intent.action.SEND"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:mimeType="image/*"/>
            </intent-filter>
            
            <intent-filter>
                <action android:name="android.intent.action.SEND"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:mimeType="text/plain"/>
            </intent-filter> 
            
            <intent-filter>
                <action android:name="android.intent.action.SEND_MULTIPLE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:mimeType="image/*"/>
            </intent-filter>
        </activity>
Handle the incoming Content

通过调用getIntent()方法得到intent对象,根据内容的不同,做不同的处理,例如:

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Get intent, action and MIME type
        Intent intent = getIntent();
        String action = intent.getAction();
        String type = intent.getType();

        if (Intent.ACTION_SEND.equals(action) && type != null) {
            if ("text/plain".equals(type)) {
                handleSendText(intent); // handle text being sent
            } else if (type.startsWith("image/")) {
                handSendImage(intent); // handle single image being sent
            }
        } else if (Intent.ACTION_SEND_MULTIPLE.equals(action)) {
            if (type.startsWith("image/")) {
                handleSendMultipleImages(intent); // handle multiple images being sent
            }
        } else {
            // handle other intents, such as being started from the home screen
        }
    }

    void handleSendText(Intent intent) {
        String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT);
        if (sharedText != null) {
            // update UI to reflect text being shared
        }
    }

    void handleSendImage(Intent intent) {
        Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
        if (imageUri != null) {
            // update UI to reflect images being shared
        }
    }

    void handleSendMultipleImages(Intent intent) {
        ArrayList<Uri> imageUris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
        if (imageUris != null) {
            // update UI to reflect multiple images being shared
        }
    }
Adding an Easy Share Action

使用ShareActionProvider在actionbar上添加一个快捷分享按钮.

  • 在menu资源文件中定义ShareActionProvider的属性
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:id="@+id/menu_item_share"
        android:showAsAction="ifRoom"
        android:title="Share"
        android:actionProviderClass="android.widget.ShareActionProvider" />

</menu>
  • 代码中设置你想分享的intent
    想要启动一个分享的intent,首先要找到对应的menuitem,然后调用MenuItem.getActionProvider()得到ShareActionProvider的实例,使用setShareIntent的方法关联一个intent发送。代码实例如下:
    private ShareActionProvider mShareActionProvider;

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // inflate menu resource file
        getMenuInflater().inflate(R.menu.share_menu, menu);

        // locate MenuItem with ShareActionProvider
        MenuItem item = menu.findItem(R.id.menu_item_share);

        // fetch and store ShareActionProvider
        mShareActionProvider = (ShareActionProvider) item.getActionProvider();

        // return true to display menu
        return true;
    }

    // call to update the share intent
    private void setShareIntent(Intent shareIntent) {
        if (mShareActionProvider != null) {
            mShareActionProvider.setShareIntent(shareIntent);
        }
    }

相关文章

  • APP之间共享数据(一)

    传递Text数据 如果有安装过的多个APP能够匹配ACTION_SEND这个action并且能够接受MIME TY...

  • iOS App Groups

    iOS学习笔记-APP之间数据共享空间_APPGroup iOS应用程序间共享数据

  • ContentProvider和ContentResovler

    1.在同一系统中装载了一个又一个的App,每个App之间有可能需要数据共享,App之间实现数据共享当然可以使用Sh...

  • iOS:app之间共享数据

    一、 Keychain Sharing(同一个证书)https://github.com/soffes/SAMKe...

  • AppGroups数据共享

    常见使用场景1:APP之间数据共享(如账号登录)常见使用场景2:容器APP与扩展应用之间资源共享(如:iMessa...

  • 【Android】不同App之间通过SharedPreferen

    Android中不同App之间共享数据可以用SharedPreference、ContentProvider,也可...

  • iOS | App 之间数据共享

    1. UIPasteboard 剪切板 剪贴板是应用程序之间传递数据的简单方式,建议不要使用全局的粘贴板,而是自己...

  • iOS APP之间数据共享

    前言 iOS中的沙盒可以让平台更加的安全,这也是沙盒给用户带来的最主要好处。不过由于沙盒的严格限制,导致程序之间共...

  • Android四大组件之ContentProvider

    概述 为了实现在不同App之间共享数据的需求,Android提供了ContentProvider。 Content...

  • App Group---APP之间数据共享

    实际开发中,我们也许会有这种需求:公司有两个APP,当用户登录其中一个APP后,在下载第二个APP的时候,可以实现...

网友评论

    本文标题:APP之间共享数据(一)

    本文链接:https://www.haomeiwen.com/subject/arkmvttx.html