在为意图选择应用程序时如何使用默认(不想创建自己的)应用程序选择器...显示选择器,用户选择一个应用程序,我用特定的 URI 显式调用它?
Intent intent = new Intent(Intent.ACTION_SEND);
// Create and start the chooser
Intent chooser = Intent.createChooser(intent, "title");
startActivity(chooser); //I dont want to start the intent ... just to know which one user chose