如何移除java.lang.ClassCastException?

huangapple go评论72阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年8月5日 21:24:10
  • 转载请务必保留本文链接:https://go.coder-hub.com/63266187.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定