我正在尝试做的是让每个功能运行,比方说,10秒。 现在我也试图让用户按下完成活动的退出按钮时停止此功能。 但是,如果让我们说用户按回家或回来,当他在活动时,那么我想要 函数在后台运行。
为了做到这一点,我已经完成了接下来的几个步骤 -
我已经在清单上的活动中宣布如下 -
<activity android:name="com.example.one.ViewList" >
<intent-filter>
<action android:name="android.intent.action.MAIN" >
</action>
<category android:name="android.intent.category.NORMAL" >
</category>
</intent-filter>
</activity>
在这个ViewList活动的代码中,我使用了onResume函数的下一个代码 -
myTimer = new Timer();
MyTimerTask myTimerTask= new MyTimerTask();
myTimer.scheduleAtFixedRate(myTimerTask, 0, 10000);
我还在活动代码中添加了下一个课程 -
private class MyTimerTask extends TimerTask {
@Override
public void run() {
runOnUiThread(new Runnable() {
@Override
public void run() {
//code to get and send location information
Log.d("MY TIMER TASK", "RUNNING");
}
});
}
}
现在在退出按钮的onClick上,我已经对下一个代码进行了测试 -
myTimer.cancel();
finish():
有趣的是 - 当活动正在运行并按下退出按钮时,该功能肯定会停止。
当我在活动中并按回或主页按钮时 - 该功能正在运行,因为我希望它在后台运行。
但是当我回到活动并按下退出按钮时,该功能会继续在后台运行,即使该应用已关闭。
那么当我按下按钮而不是破坏活动时,如何停止此功能呢?
感谢您提供任何帮助
答案 0 :(得分:0)
此代码经过测试并正在运行:
public class MainActivity extends Activity implements OnClickListener {
private CountDownTimer countDownTimer;
private boolean timerHasStarted = false;
private Button startB;
public TextView text;
private final long startTime = 30 * 1000;
private final long interval = 1 * 1000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
startB = (Button) this.findViewById(R.id.button);
startB.setOnClickListener(this);
text = (TextView) this.findViewById(R.id.timer);
countDownTimer = new MyCountDownTimer(startTime, interval);
text.setText(text.getText() + String.valueOf(startTime/1000));
}
@Override
public void onClick(View v) {
if (!timerHasStarted) {
countDownTimer.start();
timerHasStarted = true;
startB.setText("STOP");
} else {
countDownTimer.cancel();
timerHasStarted = false;
startB.setText("RESTART");
}
}
public class MyCountDownTimer extends CountDownTimer {
public MyCountDownTimer(long startTime, long interval) {
super(startTime, interval);
}
@Override
public void onFinish() {
text.setText("Time's up!");
}
@Override
public void onTick(long millisUntilFinished) {
text.setText("" + millisUntilFinished/1000);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FF0000" >
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:paddingRight="10dip"
android:textSize="50dp" />
<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Start" />
</RelativeLayout>