ストップウォッチのようなものを作成しようと思っています。
ネット上で参考にさせて頂く物を見つけてそこを自分の思うように修正して理解を深めながら、最後に完成品を作ろうと思っています。
https://akira-watson.com/android/system-currenttimemillis.html
こちらのストップウォッチを参考にさせて頂きました。
ストップウォッチであると共に、最終的に、
(例) 〜してから5年2ヶ月3日と4時間11分7秒が経過しました。
と、そういう年数月日も含んだストップウォッチとしたいと構想しています。
そこでまず
private final SimpleDateFormat dataFormat =
new SimpleDateFormat("mm:ss.SS", Locale.JAPAN);
の所の分や秒の部分を以下のように年月日も付け加えました。
private final SimpleDateFormat dataFormat =
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SS", Locale.JAPAN);
timerText.setText(dataFormat.format(startTime));
timerText2.setText(dataFormat.format(endTime));
timerText3.setText(dataFormat.format(diffTime));
と、3つに自分で増やしそれぞれを
開始時刻
現在時刻
経過時間
としました。
//開始時刻
timerText.setText(dataFormat.format(startTime));
//現在時刻
timerText2.setText(dataFormat.format(endTime));
//経過時間
timerText3.setText(dataFormat.format(diffTime));
という具合です。
以上が主に自分が改修してみたあたりです。
Java
1public class MainActivity extends AppCompatActivity implements 2 Runnable, View.OnClickListener { 3 4 private long startTime; 5 6 private TextView timerText; 7 private TextView timerText2; 8 private TextView timerText3; 9 private Button startButton; 10 11 12 private final Handler handler = new Handler(Looper.getMainLooper()); 13 private volatile boolean stopRun = false; 14 15 private final SimpleDateFormat dataFormat = 16 new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SS", Locale.JAPAN); 17 18 19 @Override 20 protected void onCreate(Bundle savedInstanceState) { 21 super.onCreate(savedInstanceState); 22 setContentView(R.layout.activity_main); 23 24 25 timerText = findViewById(R.id.startingtime); 26 27 28 timerText2 = findViewById(R.id.endtime); 29 30 31 timerText3 = findViewById(R.id.timer); 32 33 34 35 36 startButton = findViewById(R.id.start_button); 37 startButton.setOnClickListener(this); 38 39 Button stopButton = findViewById(R.id.stop_button); 40 stopButton.setOnClickListener(this); 41 42 } 43 44 @Override 45 public void onClick(View v) { 46 Thread thread; 47 if (v == startButton){ 48 stopRun = false; 49 thread = new Thread(this); 50 thread.start(); 51 52 startTime = System.currentTimeMillis(); 53 54 } 55 else{ 56 stopRun = true; 57 timerText.setText(dataFormat.format(0)); 58 } 59 } 60 61 @Override 62 public void run() { 63 // 10 msec order 64 int period = 10; 65 66 while (!stopRun) { 67 // sleep: period msec 68 try { 69 Thread.sleep(period); 70 } 71 catch (InterruptedException e) { 72 e.printStackTrace(); 73 stopRun = true; 74 } 75 76 handler.post(new Runnable() { 77 @Override 78 public void run() { 79 long endTime = System.currentTimeMillis(); 80 // カウント時間 = 経過時間 - 開始時間 81 long diffTime = (endTime - startTime); 82 83 timerText.setText(dataFormat.format(startTime)); 84 timerText2.setText(dataFormat.format(endTime)); 85 timerText3.setText(dataFormat.format(diffTime)); 86 87 } 88 }); 89 } 90 } 91} 92
xml
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:padding="20dp" 7 android:orientation="vertical" 8 android:gravity="center" 9 android:background="@color/cardview_light_background" 10 tools:context=".MainActivity"> 11 12 13 14 15 <TextView 16 android:id="@+id/text1" 17 18 android:textSize="20sp" 19 android:textColor="#00f" 20 android:text="@string/text1" 21 android:layout_width="wrap_content" 22 android:layout_height="wrap_content" /> 23 24 <TextView 25 android:id="@+id/startingtime" 26 android:layout_marginTop="5dp" 27 android:textSize="20sp" 28 android:textColor="#00f" 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" /> 31 32 33 34 35 36 37 <TextView 38 android:id="@+id/text2" 39 android:layout_marginTop="20dp" 40 android:textSize="20sp" 41 android:textColor="#00f" 42 android:text="@string/text2" 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" /> 45 46 47 <TextView 48 android:id="@+id/endtime" 49 android:layout_marginTop="5dp" 50 android:textSize="20sp" 51 android:textColor="#00f" 52 android:layout_width="wrap_content" 53 android:layout_height="wrap_content" /> 54 55 56 57 58 59 60 <TextView 61 android:id="@+id/text3" 62 android:layout_marginTop="20dp" 63 android:textSize="20sp" 64 android:textColor="#00f" 65 android:text="@string/text3" 66 android:layout_width="wrap_content" 67 android:layout_height="wrap_content" /> 68 69 <TextView 70 android:id="@+id/timer" 71 android:layout_marginTop="5dp" 72 android:textSize="20sp" 73 android:textColor="#00f" 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" /> 76 77 78 79 80 <Button 81 android:text="@string/start" 82 android:id="@+id/start_button" 83 android:layout_margin="10dp" 84 android:layout_width="match_parent" 85 android:layout_height="wrap_content" /> 86 87 <Button 88 android:text="@string/stop" 89 android:id="@+id/stop_button" 90 android:layout_margin="10dp" 91 android:layout_width="match_parent" 92 android:layout_height="wrap_content" /> 93 94</LinearLayout>
ここで問題なのが、参考サイトさんにも少し記載はあったのですが、
ストップウォッチ、時間の差分部分についての表示です。
開始時刻、現在時刻は共に問題なく、現在の2021年1月12日より時刻を取得出来ますが、
経過時間のところは、分や秒の表示は問題ないのですが、
年月日は 1970-01-01 09:00 1970年の1月1日 9時 となっており、
自分としましては、単なる差分のタイマーとしたいので
ここは1970-01-01 09:00 の部分はいらずに、
現在進んだ、秒や分、月日や年を取得したいのです・・・ 例えば2年2ヶ月10時間経過したら
その2年2ヶ月10時間の部分の情報のみ欲しくて1970年というのはいらない部分です・・
が、どこを訂正修正すれば良いのかわからなく、すみませんがお教え頂きたく思います。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー