在启动Intent时将Bitmap作为EXTRA_STREAM参数传递

时间:2009-06-26 00:19:54

标签: android android-intent

在JavaDoc中,启动intent时的EXTRA_STREAM参数需要是URI。 如何传递我从启动“android.provider.MediaStore.ACTION_IMAGE_CAPTURE”意图获得的Bitmap对象?

/**
     * A content: URI holding a stream of data associated with the Intent,
     * used with {@link #ACTION_SEND} to supply the data being sent.
     */
    public static final String EXTRA_STREAM = "android.intent.extra.STREAM";

1 个答案:

答案 0 :(得分:0)

我认为您必须将其保存到磁盘并在file:附加内容中传递EXTRA_STREAM URI。