2011.07.08(4)——— android Intent.createChooser 应用选择器

2011.07.08(4)——— android Intent.createChooser 应用选择器

参考:[url]http://www.iteye.com/topic/690376[/url]
[url]http://www.cnblogs.com/wservices/archive/2010/07/07/1772737.html[/url]
[url]http://hi.baidu.com/lck0502/blog/item/2d0036efb844a800fcfa3c58.html[/url]

也许 下面的场景 我们经常碰到:
[img]http://dl.iteye.com/upload/picture/pic/65019/39d30e3a-4c98-367e-8031-feaf739ef710.png[/img]


但是 你可知道原因 :

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));


它使用了Intent.ACTION_GET_CONTENT 和 MIME 类型来查找支持audio/* 的所有Data Picker ,允许用户选择其中之一。

我们也可以让自己的activity出现在picker里面 :

<activity android:name=".TestActivity"
android:label="TestActivity">
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="audio/music1" />
</intent-filter>
</activity>



Intent.ACTION_CHOOSER = “android.intent.action.CHOOSER” 其作用是显示一个Activity选择器。

Intent提供了一个静态的createChooser方法,让我们能够更方便的创建这样一个Intent

我们再看一个设置壁纸的例子
private void startWallpaper() {

closeAllApps(true);

final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);

Intent chooser = Intent.createChooser(pickWallpaper,

getText(R.string.chooser_wallpaper));



startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);

}



在Home界面“按Menu键”--“点击壁纸”后自然就能在一个对话框里列出这些应用,让用户选择到哪里去设置壁纸了,如下图所示。


[img]http://dl.iteye.com/upload/attachment/512277/bca4f709-cc45-3055-8405-905cc461de61.png[/img]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值