Errors




* when we create a custom class in the studio remember the datatype 
   and keep an eye on them while declaring them in Adapter view
   
example-

if its an String
write this
textplace.setText(currentposition.getMplace());

if its an double
write this
here we can see that we are converting the numerical value in a string before setting it as a view or it will give an error
textintensity.setText(String.valueOf(currentposition.getMintensity()));

Comments