3

重複の可能性:
TextView を N 秒ごとに更新していますか?

ここでは、テキストビューの Hr 値を反復ごとに計算したら更新しますが、毎回 2 秒の遅延があります。やり方がわかりません。テキストビューで今取得したのは、反復の最後の値です。すべての値を一定の遅延で表示したい。誰でも助けてください。

    for(int y=1;y<p.length;y++)
    {
       if(p[y]!=0)
        {
        r=p[y]-p[y-1];
          double x= r/500;
          Hr=(int) (60/x);
          Thread.sleep(2000);
         settext(string.valueof(Hr));
      }
    }
4

5 に答える 5

4
public class MainActivity extends Activity{
protected static final long TIME_DELAY = 5000;
//the default update interval for your text, this is in your hand , just run this sample
TextView mTextView;
Handler handler=new Handler();  
int count =0;
@Override
protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mTextView=(TextView)findViewById(R.id.textview);
    handler.post(updateTextRunnable);
}


Runnable updateTextRunnable=new Runnable(){  
  public void run() {  
      count++;
      mTextView.setText("getting called " +count);
      handler.postDelayed(this, TIME_DELAY);  
     }  
 };  
}

今回は、コードを理解して実行していただければ幸いです。

于 2013-01-23T09:53:18.010 に答える
2

タイマークラスを使用する必要があります。

Timer timer = new Timer();
        timer.schedule(new TimerTask() {

        public void run() {


        }, 900 * 1000, 900 * 1000);

上記のコードは15分ごとです。この値を変更して、ケースで使用してください。

于 2013-01-23T09:43:16.283 に答える
2

次のように、5秒ごとにテキストを更新するためにforループの代わりにHandlerまたはを使用します。TimerTask(with runOnUiThread())

Handler handler=new Handler();  

handler.post(runnable);  
Runnable runnable=new Runnable(){  
  @Override  
    public void run() {  
      settext(string.valueof(Hr));  //<<< update textveiw here
      handler.postDelayed(runnable, 5000);  
     }  
 };  
于 2013-01-23T09:44:02.783 に答える
1

TimerTaskはまさに必要なものです。

于 2013-01-23T09:46:11.970 に答える
0

それがあなたに十分に役立つことを願っています

import java.awt.Toolkit;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class demo 
{
  Toolkit toolkit;
  Timer timer;
  public demo()
  {
    toolkit = Toolkit.getDefaultToolkit();
    timer = new Timer();
    timer.schedule(new scheduleDailyTask(), 0, //initial delay
        2 * 1000); //subsequent rate
  }
  class scheduleDailyTask extends TimerTask 
  {
    public void run() 
    {
      System.out.println("this thread runs for every two second");
      System.out.println("you can call this thread to start in your activity");
      System.out.println("I have used a main method to show demo");
      System.out.println("but you should set the text field values here to be updated simultaneouly");
    }
  }
  public static void main(String args[]) {
    new demo();
  }
}
于 2013-01-23T10:20:38.843 に答える