mirror of
https://github.com/nextcloud/android.git
synced 2024-12-21 00:12:05 +03:00
wip
This commit is contained in:
parent
33b749d775
commit
4553e39ddd
3 changed files with 7 additions and 4 deletions
|
@ -66,7 +66,7 @@
|
|||
<bool name="feedback_enabled">true</bool>
|
||||
<bool name="logger_enabled">false</bool>
|
||||
<string name="url_help">https://help.nextcloud.com/c/feature</string>
|
||||
<string name="url_imprint"></string>
|
||||
<string name="url_imprint"></string>/
|
||||
<string name="mail_recommend">"mailto:"</string>
|
||||
<string name="mail_feedback">"mailto:android@nextcloud.com"</string>
|
||||
<string name="url_app_download">"https://play.google.com/store/apps/details?id=com.nextcloud.client"</string>
|
||||
|
|
|
@ -64,6 +64,7 @@ import java.util.Locale;
|
|||
public class FileContentProvider extends ContentProvider {
|
||||
|
||||
private DataBaseHelper mDbHelper;
|
||||
public static final String AUTHORITY = "org.owncloud";
|
||||
|
||||
private static final int SINGLE_FILE = 1;
|
||||
private static final int DIRECTORY = 2;
|
||||
|
|
|
@ -44,6 +44,7 @@ import com.owncloud.android.lib.common.utils.Log_OC;
|
|||
import com.owncloud.android.lib.resources.shares.OCShare;
|
||||
import com.owncloud.android.lib.resources.shares.ShareType;
|
||||
import com.owncloud.android.lib.resources.status.OwnCloudVersion;
|
||||
import com.owncloud.android.providers.FileContentProvider;
|
||||
import com.owncloud.android.services.OperationsService;
|
||||
import com.owncloud.android.services.observer.FileObserverService;
|
||||
import com.owncloud.android.ui.activity.FileActivity;
|
||||
|
@ -526,11 +527,12 @@ public class FileOperationsHelper {
|
|||
String encodedStoragePath = WebdavUtils.encodePath(storagePath);
|
||||
Intent sendIntent = new Intent(Intent.ACTION_ATTACH_DATA);
|
||||
// set MimeType
|
||||
// sendIntent.setType(file.getMimetype());
|
||||
sendIntent.setType(file.getMimetype());
|
||||
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("content://" + FileContentProvider.AUTHORITY + file.getRemotePath()));
|
||||
// sendIntent.setData(Uri.parse(encodedStoragePath));
|
||||
// sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(encodedStoragePath));
|
||||
sendIntent.setDataAndType(Uri.parse(encodedStoragePath), "image/*");
|
||||
sendIntent.putExtra("jpg", "image/*");
|
||||
// sendIntent.setDataAndType(Uri.parse(encodedStoragePath), "image/*");
|
||||
// sendIntent.putExtra("jpg", "image/*");
|
||||
// sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + encodedStoragePath));
|
||||
// sendIntent.putExtra("jpg", "image/*");
|
||||
|
||||
|
|
Loading…
Reference in a new issue