为android做一个基本的定时器?

发布于 2025-01-08 09:47:35 字数 2547 浏览 0 评论 0原文

我有一个 main.xml 布局,其中设置了用于设置锻炼时间的框,当每个锻炼时间用完时,您都会收到提醒。您只需按启动按钮即可启动计时器。我怎样才能做到当您输入时间并按开始时它会自动开始计时并提醒您?

主文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Warm-Up" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" >
</EditText>

<TextView
    android:id="@+id/textView4"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Fast" />

<EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<TextView
    android:id="@+id/textView5"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Recovery" />

<EditText
    android:id="@+id/editText3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" >
</EditText>

<TextView
    android:id="@+id/textView6"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Times" />

<EditText
    android:id="@+id/editText4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<TextView
    android:id="@+id/textView7"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Cool-Down" />

<EditText
    android:id="@+id/editText5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start" />

I have a main.xml layout set up with boxes to set times for a workout and you will be alerted when the time runs out for each. You just press start button to start the timers. How can I make it so when you type in the time and press start it atully starts timing and alerts you?

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Warm-Up" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" >
</EditText>

<TextView
    android:id="@+id/textView4"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Fast" />

<EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<TextView
    android:id="@+id/textView5"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Recovery" />

<EditText
    android:id="@+id/editText3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" >
</EditText>

<TextView
    android:id="@+id/textView6"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Times" />

<EditText
    android:id="@+id/editText4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<TextView
    android:id="@+id/textView7"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Cool-Down" />

<EditText
    android:id="@+id/editText5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

记忆之渊 2025-01-15 09:47:35
 new CountDownTimer(timeToBlow, timeToTick) {

 public void onTick(long millisUntilFinished) {
     Log.d(TAG,"About to blow!!!");
 }

 public void onFinish() {
     Log.d(TAG,"BOOM!");
 }
}.start();

只需将 timeToBlow 替换为从文本字段中获取的时间,将 timeToTick 替换为您想要的任何时间。

来源

 new CountDownTimer(timeToBlow, timeToTick) {

 public void onTick(long millisUntilFinished) {
     Log.d(TAG,"About to blow!!!");
 }

 public void onFinish() {
     Log.d(TAG,"BOOM!");
 }
}.start();

Just replace timeToBlow with the time that you get from your text fields, and timeToTick with any time that you want.

Source

赠我空喜 2025-01-15 09:47:35

这是我通过简单搜索 google 找到的一个 java 计时器的基本示例。
http://www.gammelsaeter.com/programming/simple-timer-example-in-java/

获取用户从文本框中输入并用它来设置延迟时间。就您的警报而言,一旦计时器结束,您就必须从后台线程中触发某些内容。

Here is a basic example of a java timer that I found by simply searching google.
http://www.gammelsaeter.com/programming/simple-timer-example-in-java/

Grab the user input from your textbox and use it to set the delay time. As far as your alerts, you are going to have to fire something from the background thread as soon as the timer ends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文