Environment.getExternalStoragePublicDirectory() の Javadocの例では言及されていますContext.getExternalMediaDir()
が、このメソッドは私の Android API バージョンでは使用できず、どのバージョンのどこにも文書化されていません。これはタイプミスですか、それともリリースに至らなかったものですか?
void createExternalStoragePublicPicture() {
// Create a path where we will place our picture in the user's
// public pictures directory. Note that you should be careful about
// what you place here, since the user often manages these files. For
// pictures and other media owned by the application, consider
// Context.getExternalMediaDir().
File path = Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES);