ディレクトリの作成時にデフォルトのイメージを追加するにはどうすればよいですか? これはアラートダイアログを使用してディレクトリを作成する以下のコードですが、ディレクトリが作成された場合にデフォルトのイメージを自動的に追加したいのですが、どうすればよいですか?
デフォルトのイメージ ID は(R.drawable.myimage)
です。ディレクトリ作成時にこの画像をディレクトリに追加したい。
AlertDialog.Builder alert = new AlertDialog.Builder(context);
alert.setTitle("Add New Photo Folder"); // Set Alert dialog
// title here
alert.setMessage("Enter Folder Name "); // Message here
// Set an EditText view to get user input
final EditText input = new EditText(context);
alert.setView(input);
alert.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String srt = input.getEditableText().toString();
Toast.makeText(context, srt, Toast.LENGTH_LONG).show();
File photos = new
File(getFilesDir(), srt);
if (!photos.exists()) {
photos.mkdirs();
gridView.invalidateViews();
gridView.setAdapter(simpleAdapter);
inflateListView(currentFiles);
finish();
startActivity(getIntent());
} else {
Toast.makeText(context, "Already Exist This folder", Toast.LENGTH_LONG).show();
}
}
});
alert.setNegativeButton("CANCEL", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Canceled.
dialog.cancel();
}
}); // End of alert.setNegativeButton
AlertDialog alertDialog = alert.create();