Updating TextView with clock
问题 I have been trying to create a program that will output a working digital clock that will allow me to quickly access the date and time. I have the code to parse the time, however, I'm having difficulty updating the textview. I have this: `public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); timer = (TextView)findViewById(R.id.timer); time = new Time(); time.setToNow(); timeString = time.toString(); changeTime = Parser