6
我想通過藍牙使用我的應用程序發送文件。 我已經改變了MIME類型的東西隨機的,因爲asdxasd/asdxa 和文件有一個擴展,我需要使用,這是.sso與藍牙選項只分享意圖
當我使用它僅出現在藍牙和Gmail選項份額的意圖,但我不能從列表中刪除gmail選項?
非常感謝! 我使用此代碼使用意圖發送:
file = new FileSystem(this).saveTemp();
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.fromFile(file);
sharingIntent.setType("test/onlineconfig");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share Config Using"));
非常感謝隊友!這正是我正在尋找的^^ – TiagoM
@DarkLink很高興幫助你:) – Bishan