可以使用 Intent.createChooser() 的方法来创建 Intent,并传入想要的 Sting 作为标题。
以wallpaper 选择框为例,当在Launcher workspace的空白区域上长按,会弹出wallpaper的选择框,选择框的标题为”Choose wallpaper from”,如下:
代码如下:
private void startWallpaper() {
showWorkspace(true);
final Intent pickWallpaper = new Intent(Intent.ACT
ioN_SET_WALLPAPER);
Intent chooser = Intent.createChooser(pickWallpaper, getText(R.string.chooser_wallpaper));
// NOTE: Adds a configure option to the chooser if the wallpaper supports it
startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
}
其中,R.string.chooser_wallpaper对应的字串内容就是”Choose wallpaper from”,定义在Launcher2的Strings.xml中
您可能感兴趣的文章:Android 广播大全 Intent Action 事件详解android
教程之intent的action属性使用示例(intent发短信)android中Intent传值与Bundle传值的区别详解Android Intent的几种用法详细解析android中intent传递list或者对象的方法Android组件间通信--深入理解Intent与IntentFilterAndroid Intent启动别的应用实现方法Android利用Intent启动和关闭ActivityAndroid
开发之利用Intent实现数据传递的方法Android常用的intent action汇总
0