forked from rallat/ImageLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from luigi-agosti/master
improving tests issue #25,and fix issue #47
- Loading branch information
Showing
21 changed files
with
636 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
core/src/main/java/com/novoda/imageloader/core/file/util/AndroidFileContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* Copyright 2012 Novoda Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.novoda.imageloader.core.file.util; | ||
|
||
import java.io.File; | ||
|
||
import android.content.Context; | ||
|
||
/** | ||
* Internal class to abstract the dependency to specific implementation | ||
* of android functionalities. | ||
* This class is for internal usage of the imageLoader. | ||
*/ | ||
public class AndroidFileContext { | ||
|
||
private Context context; | ||
|
||
public AndroidFileContext(Context context) { | ||
this.context = context; | ||
} | ||
|
||
protected boolean isMounted() { | ||
if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) { | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
protected String getPackageName() { | ||
return context.getPackageName(); | ||
} | ||
|
||
protected File getExternalStorageDirectory() { | ||
return android.os.Environment.getExternalStorageDirectory(); | ||
} | ||
|
||
protected File preparePhoneCacheDir() { | ||
return context.getCacheDir(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
core/src/main/java/com/novoda/imageloader/core/util/Log.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.novoda.imageloader.core.util; | ||
|
||
public class Log { | ||
|
||
private static final String TAG = "ImageLoader"; | ||
|
||
public static final void info(String message) { | ||
try { | ||
android.util.Log.i(TAG, message); | ||
} catch(Exception e) { | ||
System.out.println(TAG + " " + message); | ||
} | ||
} | ||
|
||
public static final void warning(String message) { | ||
try { | ||
android.util.Log.w(TAG, message); | ||
} catch(Exception e) { | ||
System.out.println(TAG + " " + message); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.