use of android.os.storage.DiskInfo in project android_frameworks_base by crdroidandroid.
the class StorageNotification method onVolumeUnmountable.
private Notification onVolumeUnmountable(VolumeInfo vol) {
final DiskInfo disk = vol.getDisk();
final CharSequence title = mContext.getString(R.string.ext_media_unmountable_notification_title, disk.getDescription());
final CharSequence text = mContext.getString(R.string.ext_media_unmountable_notification_message, disk.getDescription());
return buildNotificationBuilder(vol, title, text).setContentIntent(buildInitPendingIntent(vol)).setCategory(Notification.CATEGORY_ERROR).build();
}
Aggregations