android intent如何使用定义标题的办法

来源:爱站网时间:2018-04-13编辑:网友分享
今天小编跟大家分享一下android intent如何使用定义标题的办法,感兴趣的朋友跟小编一起来了解一下吧!

今天小编跟大家分享一下android intent如何使用定义标题的办法,感兴趣的朋友跟小编一起来了解一下吧!

可以使用 Intent.createChooser() 的方法来创建 Intent,并传入想要的 Sting 作为标题。

以wallpaper 选择框为例,当在Launcher workspace的空白区域上长按,会弹出wallpaper的选择框,选择框的标题为”Choose wallpaper from”,如下:


private void startWallpaper() {
showWorkspace(true);
final Intent pickWallpaper = new Intent(Intent.ACTION_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如何使用定义标题的办法的介绍,希望大家能够喜欢,更多内容请继续关注爱站技术频道网站!

上一篇:关于Android ellipsize的一些相关问题介绍

下一篇:android textview 显示html的方法详细介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载