空对象上的 getApplicationContext(),React Native Android 模块

发布于 2025-01-10 10:15:40 字数 925 浏览 0 评论 0原文

目前正在使用 java SDK 为我的 React Native 应用程序创建一个原生 Android 模块。我尝试启动需要上下文作为参数的 SDK。代码如下:

public class LcrSdkModule extends ReactContextBaseJavaModule {

    Context context;


    LcrSdkModule(ReactApplicationContext ReactContext) {
        super(ReactContext);
        this.context = ReactContext.getApplicationContext(); // This is where you get the context
    }

    @Override
    public String getName() {
        return "LcrSdkModule";
    }

    @ReactMethod
    public int printSomething(Integer a, Integer b) {
        return a + b;
    }

    private LcrSdk lcrSdk = new LcrSdk(this.context);
}

“private LcrSdk lcrSdk = new LcrSdk(this.context);”如果我没有记错的话,这就是代码失败的地方。这是我在 React Native Metro 端收到的错误:

Attempt to invoke virtual method 'android.content.Context android.content.Context.getApplicationContext()' on a null object

这里有什么建议吗?似乎 ReactContext 为空。

Currently creating a native android module for my react native application using a java SDK. I try to initiate the SDK which needs a context as a parameter. Here is the code:

public class LcrSdkModule extends ReactContextBaseJavaModule {

    Context context;


    LcrSdkModule(ReactApplicationContext ReactContext) {
        super(ReactContext);
        this.context = ReactContext.getApplicationContext(); // This is where you get the context
    }

    @Override
    public String getName() {
        return "LcrSdkModule";
    }

    @ReactMethod
    public int printSomething(Integer a, Integer b) {
        return a + b;
    }

    private LcrSdk lcrSdk = new LcrSdk(this.context);
}

The "private LcrSdk lcrSdk = new LcrSdk(this.context);" is where the code is failing if I'm not mistaken. Here is the error I'm receiving on the react native metro side:

Attempt to invoke virtual method 'android.content.Context android.content.Context.getApplicationContext()' on a null object

Any advice here? Just seems like ReactContext is null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文