1. 程式人生 > >整理安卓系統自帶分享和以..方式開啟的程式碼

整理安卓系統自帶分享和以..方式開啟的程式碼

分享檔案: intent = new Intent(Intent.ACTION_SEND); intent.setType("*/*"); intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(path)); startActivity(Intent.createChooser(intent, "分享到"));
分享文字: intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT,text); startActivity(Intent.createChooser(intent, "分享到"));

開啟:
intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(path), "*/*");
startActivity(intent);