현재 시간을 초 단위로 표시합니다!
5477 단어 Android
Hander 및 Timer를 사용하여 시계를 표시하십시오!
Activity 내에서 현재 시각을 표시하는 TextView를 만듭니다.
Handler, Timer, TimerTask 클래스를 사용합니다.
public class MainActivity extends Activity {
private Handler mHandler;
private Timer mTimer;
// 時刻表示のフォーマット
private static SimpleDateFormat mSimpleDataFormat = new SimpleDateFormat("yyyy年 MM月dd日 HH:mm:ss");
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
mHandler = new Handler(getMainLooper());
mTimer = new Timer();
// 一秒ごとに定期的に実行します。
mTimer.schedule(new TimerTask() {
@Override
public void run() {
mHandler.post(new Runnable() {
public void run() {
Calendar calendar = Calendar.getInstance();
String nowDate = mSimpleDataFormat.format(calendar.getTime());
// 時刻表示をするTextView
((TextView) findViewById(R.id.clock)).setText(nowDate);
}
});}
},0,1000);
}
@Override
protected void onDestroy() {
super.onDestroy();
// 定期実行をcancelする
if (mTimer != null) {
mTimer.cancel();
mTimer = null;
}
}
}
Reference
이 문제에 관하여(현재 시간을 초 단위로 표시합니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ueno-yuhei/items/ae4bace7bad6822d4749텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)