我正在尝试在我的 android 应用程序中创建一个按钮,允许用户使用他们选择的社交媒体网络共享图像。图像文件存储在应用程序的资产文件夹中。
我的计划是实现一个自定义 ContentProvider 以提供对图像的外部访问,然后发送一个 TYPE_SEND 意图,指定我的内容提供程序中图像的 uri。
我已经这样做了,它适用于 Google+ 和 GMail,但对于其他服务它失败了。最难的部分是找到关于我应该从我的 ContentProvider 的 query() 方法返回的信息。一些应用程序指定一个投影(例如 Google+ 要求提供 _id 和 _data),而一些应用程序将 null 作为投影传递。即使指定了投影,我也不知道列中需要哪些实际数据(类型)。我找不到这方面的文档。
我还实现了 ContentProvider 的 openAssetFile 方法,它被调用(Google+ 调用了两次!),但随后查询方法也不可避免地被调用。似乎只有查询方法的结果才算数。
有什么想法我哪里出错了吗?我应该从我的查询方法返回什么?
下面的代码:
// my intent
Intent i = new Intent(android.content.Intent.ACTION_SEND);
i.setType("image/jpeg");
Uri uri = Uri.parse("content://com.me.provider/ic_launcher.jpg");
i.putExtra(Intent.EXTRA_STREAM, uri);
i.putExtra(android.content.Intent.EXTRA_TEXT, text);
startActivity(Intent.createChooser(i, "Share via"));
// my custom content provider
public class ImageProvider extends ContentProvider
{
private AssetManager _assetManager;
public static final Uri CONTENT_URI = Uri.parse("content://com.me.provider");
// not called
@Override
public int delete(Uri arg0, String arg1, String[] arg2)
{
return 0;
}
// not called
@Override
public String getType(Uri uri)
{
return "image/jpeg";
}
// not called
@Override
public Uri insert(Uri uri, ContentValues values)
{
return null;
}
@Override
public boolean onCreate()
{
_assetManager = getContext().getAssets();
return true;
}
@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
{
MatrixCursor c = new MatrixCursor(new String[] { "_id", "_data" });
try
{
// just a guess!! works for g+ :/
c.addRow(new Object[] { "ic_launcher.jpg", _assetManager.openFd("ic_launcher.jpg") });
} catch (IOException e)
{
e.printStackTrace();
return null;
}
return c;
}
// not called
@Override
public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs)
{
return 0;
}
// not called
@Override
public String[] getStreamTypes(Uri uri, String mimeTypeFilter)
{
return new String[] { "image/jpeg" };
}
// called by most apps
@Override
public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException
{
try
{
AssetFileDescriptor afd = _assetManager.openFd("ic_launcher.jpg");
return afd;
} catch (IOException e)
{
throw new FileNotFoundException("No asset found: " + uri);
}
}
// not called
@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException
{
return super.openFile(uri, mode);
}
}