I cannot find a TextView by calling findViewById(), even though the ID does exist.
TextView
findViewById()
OtherActivity:
OtherActivity
public class
change your code like ::
TextView textView = (TextView)findViewById(R.id.txt02);
There is no capital letter like "ID"
Main :