What does it mean you have (TYPE) in the assignment if already specified the type when I init'd the var?
When is it needed if not all assignments have this?
Example:
private TextView mTvCreate;
mTvCreate = (TextView) findViewById(R.id.create);
What does it mean you have (TYPE) in the assignment if already specified the type when I init'd the var?
When is it needed if not all assignments have this?
Example:
private TextView mTvCreate;
mTvCreate = (TextView) findViewById(R.id.create);