Android ApiDemos example (23): App-& gt; Intents

Source: Internet
Author: User

The Intents sample code is very simple:

[Java]
Intent intent = new Intent (Intent. ACTION_GET_CONTENT );
Intent. setType ("audio /*");
StartActivity (Intent. createChooser (intent, "Select music "));
Intent intent = new Intent (Intent. ACTION_GET_CONTENT );
Intent. setType ("audio /*");
StartActivity (Intent. createChooser (intent, "Select music "));

 

It uses the Intent. ACTION_GET_CONTENT and MIME types to find all Data pickers that support audio/* and allows users to select one of them. For example, you can select a data file as an attachment for an Email application.

The createChooser method provides a convenient way to create an ACTION_CHOOSER Intent.

Is the result of running on the simulator. There are two supported Audio/* MIME:

 


Author: mapdigit

Related Article

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.