你可以通過以下步驟來動態修改TextClock的顯示時間:
TextClock textClock = findViewById(R.id.textClock);
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String currentTime = sdf.format(new Date());
textClock.setText(currentTime);
這樣就可以動態修改TextClock的顯示時間為當前時間。你也可以根據需求修改SimpleDateFormat的時間格式。