mp3 ファイルをアプリケーション フォルダに保存しようとしましたが、res/raw/
実際にこれを行う方法がわかりません..
ボタンがclicked
OnClickListener button2 = new OnClickListener(){
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
int YOUR_RESULT_CODE = 0;
intent.getData();
startActivityForResult(intent, YOUR_RESULT_CODE);
}
};
それは、ファイル エクスプローラーを使用して .mp3 ファイルの種類を選択したいからです。
選択したファイルを特定のフォルダー (res/raw)into
に保存するにはどうすればよいですか?application
public File getTempFile(Context context, String url) {
//should i add something here?
File file1 = null;
try {
String FileName = Uri.parse(url).getLastPathSegment();
file1 = File.createTempFile(FileName, null, context.getCacheDir());
}
catch (IOException e) {
}
return file1;
}
code
あなたの例に事前に感謝が含まれていれば幸いです:)