Processing content from other apps receives content from other applications

Source: Internet
Author: User
Tags home screen

Just as your application can send data to other applications, so too can it easily receive data from applications. think about how users interact with your application, and what data types you want to receive from other applications. for example, a social
Networking application wowould likely be interested in processing ing text content, like an interesting web URL, from another app.

Google + Android Application accepts both textAndSingle or multiple images. With this app, a user can easily start a new Google + post with photos from the android gallery app. http://blog.csdn.net/sergeycao

Update your manifest

Intent filters inform the system what intents an application component is willing to accept. Similar to how you constructed an intent with action
ACTION_SENDIn the send content to other apps using intents lesson, you create intent filters in order to be able to receive intents with this action. You define an intent filter in your manifest, using
<intent-filter>Element. For example, if your application handles processing ing text content, a single image of any type, or multiple images of any type, your manifest wowould look like:

<activity android:name=".ui.MyActivity" >    <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>

Note:For more information on intent filters and intent resolution please read
Intents And intent Filters

When another application tries to share any of these things by constructing an intent and passing it
startActivity(), Your application will be listed as an option in the intent chooser. If the user selects your application, the corresponding activity (.ui.MyActivityIn the example above) will be started. It is then
Up to you to handle the content appropriately within your code and UI.

Handle the incoming content

To handle the content delivered byIntent, Start by calling
getIntent()To getIntentObject. Once you have the object, you can examine its contents to determine what to do next. Keep in mind that if this activity can be started from other parts of the system,
Such as the launcher, then you will need to take this into consideration when examining the intent.

void onCreate (Bundle savedInstanceState) {    ...    // 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/")) {            handleSendImage(intent); // Handle single image being sent        }    } else if (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != null) {        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 image 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    }}

Caution:Take extra care to check the incoming data, you never know what some other application may send you. for example, the wrong MIME type might be set, or the image being sent might be extremely large. also, remember
To process binary data in a separate thread rather than the main ("UI") thread.

Updating the UI can be as simple as populatingEditText, Or it can be more complicated like applying an interesting photo filter to an image. It's really specific to your application what happens next.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.