android - What does this logcat line means? -


my app runs expected, except when select last option on navigation drawer. error

i/process: sending signal. pid: 2062 sig: 9 

... , app crashes. help?

when use code , when crash happen:

 binddictionary<listarecompensas> dictionary = new binddictionary<>();     dictionary.addstringfield(r.id.lrnivel, new stringextractor<listarecompensas>() {         @override         public string getstringvalue(listarecompensas listarecompensas, int position) {             return listarecompensas.getname();         }     });     dictionary.addstringfield(r.id.lrqty, new stringextractor<listarecompensas>() {         @override         public string getstringvalue(listarecompensas listarecompensas, int position) {             return "" + listarecompensas.getqty();         }     });      dictionary.addstringfield(r.id.lrexp, new stringextractor<listarecompensas>() {         @override         public string getstringvalue(listarecompensas listarecompensas, int position) {             return "" + listarecompensas.getexp();         }     });      fundapter adapter = new fundapter(recompensas.this.getactivity(),lrecompensas, r.layout.lrecompensas, dictionary);      listview lv01 = (listview)view.findviewbyid(r.id.lv01);     lv01.setadapter(adapter); 


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -