TuesDay,May 10,2011-Eclipse_android_ApiDemo_学习7
Kardos
posted @ 2011年5月09日 16:40
in 未分类
, 962 阅读
20. App/Intents
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));
setType放回的是一个设置了Type的intent 这里“”中为MIME类型(自己google)的字符串createChooser
createChooser函数会创建一个ACTION_CHOOSER intent,系统对这个intent的响应是显示一个选择列表,其中显示候选的应用。 |
自己做一个实现createChooser函数的Mode
21. App/Menu
看得头晕,放弃,转看View