我已在 android 应用程序中将图像发布到Google Plus帐户。我用相机拍了一张照片,我想把它发布到我的 google+ 帐户上。
我该怎么做 ?
我已在 android 应用程序中将图像发布到Google Plus帐户。我用相机拍了一张照片,我想把它发布到我的 google+ 帐户上。
我该怎么做 ?
您可以指定 MediaStore Uri(类似于content://media/external/images/media/42)而不是文件系统上的绝对路径。
这是一个使用相机拍照并使用该图像触发 ACTION_SEND 意图的示例。如果安装了 Google+ 应用程序,用户将能够发布他们从 Google+ 应用程序拍摄的图像。
public class MyActivity extends Activity {
...
static final int IMAGE_REQUEST = 0;
protected void pickImage() {
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, IMAGE_REQUEST);
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == IMAGE_REQUEST) {
Uri uri = data.getData();
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
// uri looks like content://media/external/images/media/42
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(i , "Share"));
}
}
}