在我的应用程序中,我想使用地图和浏览器显示位置(我需要显示设备中安装的所有浏览器。)使用Chooser.please任何一个帮我找到解决方案。谢谢预先。而且我还需要设置一次只需一次按钮.....
String format = "geo:0,0?q=" + Double.toString(latter)
+ "," + Double.toString(longer) + "(" + sender
+ ")";
Uri uri = Uri.parse(format);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
context.startActivity(Intent.createChooser(intent,
"Complete action using"));
答案 0 :(得分:0)
使用以下链接作为示例在android https://github.com/iPaulPro/aFileChooser
中实施选择器答案 1 :(得分:0)
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
// Always use string resources for UI text. This says something like "Share this photo with"
String title = getResources().getText(R.string.chooser_title);
// Create and start the chooser
Intent chooser = Intent.createChooser(intent, title);
startActivity(chooser);