使用Intent发送上下文和URI

时间:2014-06-16 11:02:02

标签: android android-intent

我想使用intent将context和uri发送到其他类。这是我将使用的代码。

Intent intent = new Intent(Intent.ACTION_VIEW, builder.build(), context, Start.class);

我在Intent.ACTION_VIEW犹豫不决,因为我认为它可以用来调用浏览器。但是,我只想将上下文和uri发送到Start.class。我应该将字符串操作参数设置为null吗?或者你可能有一个很好的方法来解决这个问题。

2 个答案:

答案 0 :(得分:1)

您无法将Context发送给另一个"类"通过Intent。响应此Intent的任何内容都是Context

您可以将Uri附加到明确的Intent,但是:

Intent i=new Intent(this, Something.class).setData(yourDesiredUri);

使用null第一个参数的语法可能与我上面的相同。

答案 1 :(得分:0)

您无法通过Intent发送Context变量,但您可以使用静态变量访问Context:

public class FirstActivity extends Activity{

    ...
    public static instance = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        ...
        instance = this;
        ...
    }

    @Override
    protected void onDestroy() {
        ...
        instance = null;
        ...
    }
}

访问实例您可以使用:

FirstActivity.instance;

不要忘记检查NullPointerException:)