android.content.res.Resources$NotFoundException: String resource ID #0x0
Change To There are different versions of setText – one takes a String and one takes an int resource id. If you pass it an integer it will try to look for the corresponding string resource id – which it can’t find, which is your error. I guess app.getTotalDl() returns an int. You need to specifically tell setText to set it … Read more