tvTemp8 = (ImageView) convertView.findViewById(R.id.dpimageurl);
convertView
is not needed. And if you want to search in view hierarchy of current activity,
convertView
is not initialised.
Inside onCreate()
,
convertView=this;
or
convertView=PlantDetails.this;
.
3
solved Remove error of my code Please [closed]