List of usage examples for android.support.v4.content FileProvider subclass-usage
From source file de.domjos.schooltools.helper.SchoolToolsFileProvider.java
/** * @author Dominic Joas */ public class SchoolToolsFileProvider extends android.support.v4.content.FileProvider { }
From source file org.chromium.chrome.browser.util.CompatibilityFileProvider.java
/** * A FileProvider which works around a bad assumption that particular MediaStore columns exist by * certain third party applications. * http://crbug.com/467423. */ public class CompatibilityFileProvider extends FileProvider {
From source file ezy.boost.update.UpdateFileProvider.java
public class UpdateFileProvider extends FileProvider {
}
From source file com.duy.ascii.sharedcode.AsciiFileProvider.java
/** * Created by Duy on 17-Aug-17. */ public class AsciiFileProvider extends FileProvider {
From source file com.just.agentweb.AgentWebFileProvider.java
/** * @author cenxiaozhong * @since 2.0.0 */ public class AgentWebFileProvider extends FileProvider { }
From source file com.github.stkent.bugshaker.flow.email.screenshot.BugShakerFileProvider.java
/** * Providing a custom {@code FileProvider} prevents manifest {@code <provider>} name collisions. * * See https://developer.android.com/guide/topics/manifest/provider-element.html for details. */ public class BugShakerFileProvider extends FileProvider {
From source file uk.ac.hutton.ics.buntata.util.ShareImageFileProvider.java
public class ShareImageFileProvider extends FileProvider {
}
From source file com.yanzhenjie.album.provider.CameraFileProvider.java
/** * <p>Defined for the camera.</p> * Created by Yan Zhenjie on 2017/3/31. */ public class CameraFileProvider extends FileProvider {
From source file ohm.library.compat.CompatFileProvider.java
public class CompatFileProvider extends FileProvider { @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { //return(new LegacyCompatCursorWrapper(super.query(uri, projection, selection, selectionArgs, sortOrder))); return CompatCursorWrapper
From source file org.chromium.chrome.browser.util.ChromeFileProvider.java
/**
* A file provider class that can share a potentially non-existent file and blocks the client
* application from accessing the file till it is written.
*
* This class serves as the default file provider, but also lets us share blocked files.
* For blocked files, it generates an unique identifier for the file to be shared and the embedder