Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的代码中,我收到以下错误:
android.widget.TableRow cannot be cast to android.widget.TextView
错误日志跳转到代码中的以下行:
mDateDisplay = (TextView) findViewById(R.id.datumGesetztText);
这是什么意思?!
问候
从错误消息中可以明显看出,“R.id.datumGesetztText”是表格行而不是 textView。确保 ...view.xml 为该字段定义了正确的类型。