英文:
java.lang.ClassCastException.How to remove?
问题
["android.support.v7.widget.AppCompatTextView 无法转换为 android.widget.EditText"]
我得到了这个错误(RuntimeException
),每次打开应用程序时都会崩溃。这是在Android Studio中的注册活动。有人可以告诉我如何解决吗?
英文:
["android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.EditText"]
getting this error (runtimeException
), apping is crashing every time i open it . Its a signup activity in android studio.
Could anyone tell me how to solve this?
答案1
得分: 0
我认为你正在尝试将AppCompatTextView
强制转换为EditText
,这意味着当你使用findViewById()
查找XML视图时,你将AppCompatTextView
的ID添加到了EditText
视图上。所以只需更改ID或视图即可解决你的问题。
英文:
I think You are trying to cast an AppCompatTextView
to EditText
that means When you find XML view with findViewById()
you add AppCompatTextView
id to EditText
view. So just change the Id or view can solve your problem.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论