I\'m developing an Android app which reads data from MySQL database and I faced this error. I have this XML layout:
When you try to set text in Edittext or textview you should pass only String format.
Edittext
textview
dateTime.setText(app.getTotalDl());
to
dateTime.setText(String.valueOf(app.getTotalDl()));