gpt4 book ai didi

android - 数 45 秒,暂停 20 秒,然后以不同的标题重复

转载 作者:行者123 更新时间:2023-11-29 00:47:07 26 4
gpt4 key购买 nike

在尝试限制电池使用时,我需要避免繁忙的循环,所以我不确定如何解决这个问题。

如果我有一个程序可以让某人唱歌 45 秒,然后他们暂停 20 秒喝一杯,然后重复,唱一些歌曲。

我的计时器在 Problem getting timer to work after cancelling one iteration and starting another , 但为了让它工作,当有人点击一个按钮时它开始第一次倒计时,但是时间是排队的,并且显示了标题,然后当时间结束时它会显示 Rest,然后 20 秒后它将显示一个新标题。

所以使用 sendMessageDelayed 是一个问题,尽管它适用于第一部分。

理想情况下,我希望在达到倒计时时让 Runnable 返回到某个 Controller 函数,然后使用 if 语句。

void Controller(int curCount) {
if(curCount % 2 == 0) {
// call thread that uses runnable with next song time limit and title
} else {
// call thread with 20 and "REST"
}
}

但是,这只有在

Thread t = new Thread(runnable);
... // Go to controller, which will count down
t.join();

阻塞直到完成。我可以用 t.wait(time * 1000); 代替 t.join(),但这可能会晚一点或早一点,因为计时器不会完美的计时,所以我认为这是不正确的。

那么,在没有不必要的轮询或繁忙循环的情况下,执行此类操作的最佳方法是什么。

for(SongModel m : songList) {
countdownTime(m.getSongTime(), m.getTitle);
countdownTime(10, "REST");
}

编辑:

我想我不清楚我当前计时器的问题。由于消息已排队,它将变为 Rest,同时仍在倒计时第一首歌曲的剩余时间,因为 RunnableHandler 完成得快得多 正在处理。因此,这种方法存在一个缺陷,导致我认为使用 sendMessageDelayed 的设计不会像我希望的那样工作,但是,如果我只需要倒计时一次/单击按钮会很好,但我的需要是通过单击按钮让这一切发生,它启动该过程,然后应该在我的问题结束时模拟 for 循环。

最佳答案

我们又来了:)

我写了这篇文章并在 Eclipse 中使用 Eclair 模拟器对其进行了测试,并且运行良好。单击一次从 54 计数到 0,然后从 20 计数到 0,然后从 45 计数到 0,等等,直到再次单击取消它。让我知道它是否符合您的需求。当然,UI 只是最低限度的:

TimerTest.java

package com.aleadam.timertest;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.SystemClock;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class TimerTest extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Button button = (Button) findViewById(R.id.btn);
button.setOnClickListener(new MyListener ());
}

private class MyListener implements OnClickListener {
private long mStartTime = 0L;
private boolean started = false;
private boolean singing = true;
private final Handler mHandler = new Handler();
private Runnable mUpdateTimeTask;
TextView label, timer;

public MyListener() {
super();
label = (TextView) findViewById (R.id.lbl);
timer = (TextView) findViewById (R.id.timer);
}
public void onClick(View v) {
if (!started) {
started = true;
((Button) v).setText(R.string.button_label_stop);
mUpdateTimeTask = new Runnable() {
public void run() {
long millis = SystemClock.elapsedRealtime() - mStartTime;
if (singing && millis >= 45000L) {
label.setText(R.string.text_label_rest);
mStartTime = SystemClock.uptimeMillis();
timer.setText("20");
singing = false;
} else if (!singing && millis >= 20000L) {
label.setText(R.string.text_label_sing);
mStartTime = SystemClock.uptimeMillis();
timer.setText("45");
singing = true;
} else {
if (singing)
timer.setText(Long.toString(45-millis/1000));
else
timer.setText(Long.toString(20-millis/1000));
}
mHandler.postDelayed (mUpdateTimeTask, 1000);
}
};
singing = true;
mStartTime = SystemClock.uptimeMillis();
label.setText(R.string.text_label_sing);
timer.setText("45");
mHandler.removeCallbacks(mUpdateTimeTask);
mHandler.postDelayed(mUpdateTimeTask, 1000);
} else {
started = false;
mHandler.removeCallbacks(mUpdateTimeTask);
label.setText("");
timer.setText("");
((Button) v).setText(R.string.button_label_start);
}
}
}
}

ma​​in.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/title_label"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button_label_start"
android:id="@+id/btn"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/lbl"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/timer"
android:textSize="24dp"
android:textStyle="bold"
android:typeface="monospace"/>
</LinearLayout>

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="title_label">Timer test - 45 + 20 sec</string>
<string name="app_name">Timer Test</string>
<string name="button_label_start">Click to start</string>
<string name="text_label_sing">Sing for 45 seconds</string>
<string name="text_label_rest">20 seconds to drink!</string>
<string name="button_label_stop">Click to cancel</string>
</resources>

关于android - 数 45 秒,暂停 20 秒,然后以不同的标题重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5784694/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com