繁体   English   中英

如何在 Android Studio 中将实时 DateTime 显示为 textView(如数字手表)?

[英]How to show the live DateTime as a textView (Like a digital watch) in Android Studio?

我在xml文件中制作了两个textView文件,其中一个textView显示当前日期,另一个显示当前时间为text

现在,我使用了 java Calendar.getInstance().getTime()方法来获取日期和时间信息。 但它充当 static 视图,即它不会像数字时钟那样更改日期和时间。

现在我正在尝试显示textViews以显示与设备系统的日期和时间同步的当前日期和时间。 这意味着,假设现在是晚上11:59:59 PM ,日期是7th Sep, 2022 就在1s之后,我的时间textView应该显示时间为12:00:00 AM ,日期应该显示为8th Sep, 2022 并且它应该像数字时钟一样在每1s秒后继续更改时间。 最后,系统日期时间和应用程序日期时间之间不应有任何延迟,即完美同步。

怎么做??

public class MainActivity extends AppCompatActivity {

    TextView textDate, textClock;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        textDate = findViewById(R.id.textDate);
        textClock = findViewById(R.id.textClock);
        setDateTime();
    }

    private void setDateTime() {
        Date c = Calendar.getInstance().getTime();
        SimpleDateFormat df = new SimpleDateFormat("dd MMM, yyyy", Locale.getDefault());
        SimpleDateFormat df_clock = new SimpleDateFormat("hh:mm:ss a", Locale.getDefault());
        String formattedDate = df.format(c);
        String formattedClock = df_clock.format(c);

        textDate.setText(formattedDate);
        textClock.setText(formattedClock);
    }
}

Android 中已经有一个TextClock class ,您应该可以使用它。 尝试用这些替换您的两个TextView 并将格式设置为您的模式。

您需要设置一个后台线程,该线程将要求 UI 每秒更新一次。

我想是这样的(但我不知道这有多准确)

private void blink() {
      final Handler hander = new Handler();
      new Thread(new Runnable() {
         @Override
         public void run() {
            // off the UI
            try {
               Thread.sleep(1000);
            } catch (InterruptedException e) {
               e.printStackTrace();
            }
            // back ot the UI
            hander.post(new Runnable() {
               @Override
               public void run() {
                  // notify the UI here
                  blink();
               }
            });
         }
      }).start();
   }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM