0

アプリをGoogle Playにアップロードしましたが、その後、自分のアプリを除いて、チェックしたすべてのデバイスでアプリが機能していないことがわかりました...

問題はファイルの保存場所にあると思います。次のコードを使用します。

しかし、SD カードのないデバイスではどうなるでしょうか?

logcat で、「ディレクトリの作成に失敗しました」というエラーが表示されます

    // Step 4: Set output file
    mMediaRecorder.setOutputFile(getOutputMediaFile(MEDIA_TYPE_VIDEO)
            .toString());
    outputFileName = getOutputMediaFile(MEDIA_TYPE_VIDEO).toString();





/** Create a File for saving an image or video */
    private static File getOutputMediaFile(int type) {
        // To be safe, you should check that the SDCard is mounted
        // using Environment.getExternalStorageState() before doing this.



    File mediaStorageDir = new File(
            Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES),
            "Your_voice");
    // This location works best if you want the created images to be shared
    // between applications and persist after your app has been uninstalled.

    // Create the storage directory if it does not exist
    if (!mediaStorageDir.exists()) {
        if (!mediaStorageDir.mkdirs()) {
            Log.d("Your_voice_App", "failed to create directory");
            return null;
        }
    }

    // Create a media file name
    String timeStamp = new SimpleDateFormat("ddMMyy_HHmmss")
            .format(new Date());
    File mediaFile;
    if (type == MEDIA_TYPE_VIDEO) {
        mediaFile = new File(mediaStorageDir.getPath() + File.separator
                + "Your_voice" + timeStamp + ".mp4");
    } else {
        return null;
    }

    return mediaFile;
}
4

1 に答える 1