projects
/
pub
/
Android
/
ownCloud.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed now - FileDisplayActivity is not recreated anymore when the user selects anothe...
[pub/Android/ownCloud.git]
/
src
/
com
/
owncloud
/
android
/
utils
/
BitmapUtils.java
diff --git
a/src/com/owncloud/android/utils/BitmapUtils.java
b/src/com/owncloud/android/utils/BitmapUtils.java
index
df04a41
..
ce7590d
100644
(file)
--- a/
src/com/owncloud/android/utils/BitmapUtils.java
+++ b/
src/com/owncloud/android/utils/BitmapUtils.java
@@
-1,5
+1,8
@@
-/* ownCloud Android client application
- * Copyright (C) 2012-2014 ownCloud Inc.
+/**
+ * ownCloud Android client application
+ *
+ * @author David A. Velasco
+ * Copyright (C) 2015 ownCloud Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
@@
-30,8
+33,6
@@
import java.io.File;
/**
* Utility class with methods for decoding Bitmaps.
/**
* Utility class with methods for decoding Bitmaps.
- *
- * @author David A. Velasco
*/
public class BitmapUtils {
*/
public class BitmapUtils {
@@
-181,7
+182,7
@@
public class BitmapUtils {
*/
public static boolean isImage(File file) {
Uri selectedUri = Uri.fromFile(file);
*/
public static boolean isImage(File file) {
Uri selectedUri = Uri.fromFile(file);
- String fileExtension = MimeTypeMap.getFileExtensionFromUrl(selectedUri.toString());
+ String fileExtension = MimeTypeMap.getFileExtensionFromUrl(selectedUri.toString()
.toLowerCase()
);
String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension);
return (mimeType != null && mimeType.startsWith("image/"));
String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension);
return (mimeType != null && mimeType.startsWith("image/"));