mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
Minor reformat
This commit is contained in:
parent
e95bcf41b6
commit
c0d812e858
1 changed files with 2 additions and 5 deletions
|
|
@ -170,7 +170,7 @@ public class ShareActivity
|
||||||
private String getRealPathFromURI(Uri contentURI) {
|
private String getRealPathFromURI(Uri contentURI) {
|
||||||
String result;
|
String result;
|
||||||
Cursor cursor = getContentResolver().query(contentURI, null, null, null, null);
|
Cursor cursor = getContentResolver().query(contentURI, null, null, null, null);
|
||||||
if (cursor == null) { // Source is Dropbox or other similar local file path
|
if (cursor == null) { // Source is local file path
|
||||||
result = contentURI.getPath();
|
result = contentURI.getPath();
|
||||||
} else {
|
} else {
|
||||||
cursor.moveToFirst();
|
cursor.moveToFirst();
|
||||||
|
|
@ -204,13 +204,10 @@ public class ShareActivity
|
||||||
|
|
||||||
mediaUriString = mediaUri.toString();
|
mediaUriString = mediaUri.toString();
|
||||||
Log.d(TAG, "Uri: " + mediaUriString);
|
Log.d(TAG, "Uri: " + mediaUriString);
|
||||||
|
Log.d(TAG, "Ext storage dir: " + Environment.getExternalStorageDirectory());
|
||||||
|
|
||||||
//convert image Uri to file path
|
//convert image Uri to file path
|
||||||
Log.d(TAG, "Ext storage dir: " + Environment.getExternalStorageDirectory());
|
|
||||||
//FilePathConverter uriObj = new FilePathConverter(this, mediaUri);
|
|
||||||
//String filePath = uriObj.getFilePath();
|
|
||||||
String filePath = getRealPathFromURI(mediaUri);
|
String filePath = getRealPathFromURI(mediaUri);
|
||||||
|
|
||||||
Log.d(TAG, "Filepath: " + filePath);
|
Log.d(TAG, "Filepath: " + filePath);
|
||||||
|
|
||||||
//Using global singleton to get CacheController to last longer than the activity lifecycle
|
//Using global singleton to get CacheController to last longer than the activity lifecycle
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue