アプリで Zip ファイルが作成されました。この zip ファイルを、Bluetooth や Gmail などの Android 携帯の他のアプリで共有したいと考えています。私はこれを使用しました:
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, zipName);
shareIntent.setType("*/*");
activity.startActivity(Intent.createChooser(shareIntent,activity.getResources().getText(R.string.send_to)));
zipname は私の zip ファイルのパスです。このコードは、ボタンを押すことで実行されます。すべてのアプリのリストがポップアップ表示されますが、Bluetooth をクリックすると、ポップアップだけが閉じられ、他には何もありません!
なぜ?私を助けてください。Bluetoothを開いて、Bluetoothをオンにする必要があります....