我是靠谱客的博主 酷酷芝麻,最近开发中收集的这篇文章主要介绍React Native: alert : tried to show an alert while not attached to an activity,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天使用alert来弹出消息时候,发现下方一直弹出一个黄色的错误提示:tried to show an alert while not attached to an activity,使用的是Android 4.x的机子。

经谷歌,发现是因为android->app->src->main->java下的MainActivity少了几个方法,将其补上就可以正常弹出Alert。另外尽量使用Alert.alert()来弹出alert(要先import Alert):

@Override
protected void onPause() {
super.onPause();
if (mReactInstanceManager != null) {
mReactInstanceManager.onHostPause(this);
}
}
@Override
protected void onResume() {
super.onResume();
if (mReactInstanceManager != null) {
mReactInstanceManager.onHostResume(this, this);
}
}
@Override
protected void onDestroy() {
super.onDestroy();
if (mReactInstanceManager != null) {
mReactInstanceManager.onHostDestroy();
}
}
@Override
public void onBackPressed() {
if (mReactInstanceManager != null) {
mReactInstanceManager.onBackPressed();
} else {
super.onBackPressed();
}
}


最后

以上就是酷酷芝麻为你收集整理的React Native: alert : tried to show an alert while not attached to an activity的全部内容,希望文章能够帮你解决React Native: alert : tried to show an alert while not attached to an activity所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部