Running the below code and can't resolve StringUtils and myString... does something need imported or is there another way? this takes a string from another activity and makes it an integer to allow a calculation of old and new values.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Setting button as a unique name
Button buttonAdd = (Button) findViewById(R.id.add_button);
Button buttonAbout = (Button) findViewById(R.id.about_button);
Button buttonReset = (Button) findViewById(R.id.reset_button);
String calorie = getIntent().getStringExtra("calorie");
TextView textView1 = (TextView)findViewById(R.id.textView1);
String strOldValue = textView1.getText().toString();
Integer oldValue = StringUtils.isNotBlank(myString) ? Integer.parseInt(myString) : 0;
Integer newValue = Integer.parseInt(calorie);
textView1.setText((oldValue + newValue));