Is there any way to do this in a single line:
TextView tv = (TextView) findViewById(R.id.lbSightName);
tv.setText("Some Text");
I would like to do away declaring the intermediary tv, like so:
(TextView) findViewById(R.id.lbSightName).setText("Some Text");
Not possible?