我需要使用共享意图活动从我的应用程序中共享位置,我已经经历了一些示例并且知道如何实现共享意图。但是我被困在 setType 上。我需要我的应用程序来共享位置详细信息以及地图上的用户位置。
顺便说一句,我复制了一个带有非常相似问题的用户代码“无罪”
任何帮助将不胜感激。
Intent intent1 = new Intent(Intent.ACTION_SEND);
intent1.setType("text/plain");
intent1.putExtra(Intent.EXTRA_TEXT, "The status update text");
startActivity(Intent.createChooser(intent1, "Select prefered Service"));