I am not sure if this is an Android issue or a AndroidStudio issue. Why is this valid:
TextView currentItem
currentItem = (TextView)findViewById(R.id.myText);
currentItem.setText("text");
But this is not (cannot resolve method setText(Java.Lang.String))
(TextView)findViewById(R.id.myText).setText("text");
Not a big deal, but I have some code that requires a lot of text updates. It would be much cleaner if I could get this in one line.