当前位置:操作系统 > 安卓/Android >>

android怎样自定义Intent选择界面的标题

可以使用 Intent.createChooser() 的方法来创建 Intent,并传入想要的 Sting 作为标题。
以wall易做图 选择框为例,当在Launcher workspace的空白区域上长按,会弹出wall易做图的选择框,选择框的标题为”Choose wall易做图 from”,如下:


 
private void startWall易做图() {
        showWorkspace(true);
        final Intent pickWall易做图 = new Intent(Intent.ACTION_SET_WALLPAPER);
        Intent chooser = Intent.createChooser(pickWall易做图, getText(R.string.chooser_wall易做图));
        // NOTE: Adds a configure option to the chooser if the wall易做图 supports it
        startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
    }
 
其中,R.string.chooser_wall易做图对应的字串内容就是”Choose wall易做图 from”,定义在Launcher2的Strings.xml中

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,