0
私はインテントを使用して、ユーザーに私のAPKファイルを表示するには、ここでのコードは次のとおりです。ファイルをsdcardに表示するにはどうしたらいいですか?
SDCardRoot = Environment.getExternalStorageDirectory();
File file = new File(SDCardRoot,fileName);
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new
Intent(Intent.ACTION_VIEW,path);
startActivity(intent);
が、それは私にActivityNotFoundExceptionを与えている、私は、ユーザーがそれをインストールできるようにAPKファイルを起動します。