我需要从我的一个startActivity()方法中调用static,这可能吗?

最佳答案

你需要一个上下文才能做到这一点。您能将上下文作为参数传递到静态方法中吗?

public static void doSomething(Context ctx) {
    // do some stuff here
    ctx.startActivity(new Intent(ctx, OtherActivity.class));
}

关于android - 是否可以从静态方法中调用startActivity()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12509968/

10-12 06:31