EditText.getText().toString() crashes(EditText.getText().toString() 崩溃)
问题描述
在我的 android 应用程序中,我有 3 个对话框,用户在其中将信息放入 3 个 editTexts 中,它会在随机选择要选择的数据后将其中一个数据显示到另一个类/页面上.
In my android application , I have 3 dialogue boxes in which the user puts info into 3 editTexts and it will display the one of the data onto another class/page after it randomly picks which data to choose.
这是我的主类
这是我的展示类:
这是我点击主按钮后的加载屏幕类
And this is my loading screen class right after the main button is clicked
}
当程序尝试在 resultScreen 上显示数据时,我的应用程序在加载屏幕几秒钟后崩溃.
My app crashes a few seconds into the loading screen when the program attempts to display the data on the resultScreen.
这是我的 logCat
Here's my logCat
谢谢各位.
推荐答案
我相信我看到了问题所在.您正在尝试访问您的 Array
,但它是一个实例变量而不是静态变量,因此当您退出 Activity
时它会被终止.您可以将它们放在静态类中并以这种方式访问它们,也可以通过 Intent
传递 String
变量,具体取决于您的需要.
I believe I see the problem. You are trying to access your Array
but it is an instance variable instead of static so it is being killed off when you exit your Activity
. You can either put them in a static class and access them that way or pass a String
variable through your Intent
, depending on what you need.
如果您在离开 MainActivity
时拥有所需的 String
值,那么我可能会通过您的 Intent
传递它.如果该值取决于您的其他 Activity
之一中的某些内容,那么我会考虑将其放在一个单独的类中,但看起来这不是您在这里需要的
If you have the value of the String
you need when you leave MainActivity
then I would probably just pass it through your Intent
. If the value depended on something in one of your other Activities
then I would consider putting it in a separate class but it doesn't look like that's what you need here
编辑
你已经在这里做了,有点
You are already doing it here, kind of
但是您没有启动会获得 String
But you aren't starting the Activity
that would get the String
该行将传递一个 String
与 key "displpay"
和 displayChoice
的值,虽然我认为该值是一个空 String
在那一点上,但你没有启动那个 Activity
.我不知道你的流程应该如何工作,但基本上你会做这样的事情
that line would pass a String
with key "displpay"
and value of displayChoice
, although I think that value is an empty String
at that point, but you don't start that Activity
. I'm lost on how your flow is suppose to work but basically you would do something like this
然后在onCreate()
这篇关于EditText.getText().toString() 崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!