发布网友 发布时间:2024-01-24 13:10
共3个回答
热心网友 时间:2024-03-09 08:00
看看这一句:java.lang.ClassCastException: android.widget.TextView cannot be cast to android.widget.EditText。类型强转时出问题了,你得到的View 是TextView,可是你却把强转成EditText,你是不是在findviewbyid的时候把EditText当成TextView 了?如果确定没有错,就清理一下工程:菜单样中 项目-->清理。热心网友 时间:2024-03-09 08:00
好像是你获取控件出错了, 把 textview 按照 editview 来进行获取了,你检查一下 看看热心网友 时间:2024-03-09 07:57
Caused by: java.lang.ClassCastException: android.widget.TextView cannot be cast to android.widget.EditText 你Textview这个控件用的有误,检查下