Sort of patching the gaping holes in my android app. Fixing bugs and overhauling the code that is depreciated per honeycomb. A particularly annoying bug completely crashed the program and gave me this useless message that it could not find a resource. Programming is such a humbling exercise...to be constantly reminded that you are a stupid human by some metal and plastic box.
Where hpchange.getHP() returns an integer:
Code:
holder.txtHPValue.setText(hpchange.getHP());
Switch to:
Code:
holder.txtHPValue.setText(String.valueOf(hpchange.getHP()));
...and the program does not come down like an anvil anymore.