Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

Android and Count Down (CountDownTimer)

Android and Count Down (CountDownTimer) ในการทำ Count Down บน Android ด้วยภาษา Java สามารถใช้ Class ที่มีชื่อว่า CountDownTimer โดย Class นี้จะทำหน้าที่นับถอยหลังตามหน่วยเวลาที่กำหนด

	public class MyCountDown extends CountDownTimer {
		public MyCountDown(long millisInFuture, long countDownInterval) {
			super(millisInFuture, countDownInterval);
			// TODO Auto-generated constructor stub
		}

		@Override
		public void onFinish() { // เมื่อทำงานเสร็จสิ้น
			// TODO Auto-generated method stub
		}

		@Override
		public void onTick(long remain) { // ในขณะที่ทำงานทุก ๆ ครั้ง
			// TODO Auto-generated method stub
		}

	}

การประกาศ Class ของ CountDownTimer

final MyCountDown countdown = new MyCountDown(startTime,interval);

startTime คือ จำนวนเวลาที่ต้องการให้นับถอยหลัง มีหน่วยเป็น 1000 = 1 วินาที
interval คือ จำนวนหน่วยที่ต้องการให้หน่วงเวลานัย มีหน่วยเป็น 1000 = 1 วินาที


countdown.start();

ใช้สำหรับ start

countdown.cancel();

ใช้สำหรับยกเลิก

Example การใช้ Count Down ตัวนับถอยหลัง ด้วย CountDownTimer

Android and Count Down (CountDownTimer)

activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Button
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start" />

    <Button
        android:id="@+id/btnStop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/btnStart"
        android:text="Stop" />
    
        <TextView
        android:id="@+id/txtResult"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/btnStop"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="98dp"
        android:text="result" />

</RelativeLayout>


MainActivity.java
package com.myapp;

import java.util.Timer;
import java.util.TimerTask;

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

public class MainActivity extends Activity {

	Handler handler = new Handler();
	Timer timer = new Timer();	
	TimerTask timetask;
	
	private final long startTime = 10000;  // 1000 = 1 second
	private final long interval = 1000;
	
	
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);	

		final MyCountDown countdown = new MyCountDown(startTime,interval);
		
		// btnStart
		final Button btnStart = (Button) findViewById(R.id.btnStart);
		// Perform action on click
		btnStart.setOnClickListener(new View.OnClickListener() {
			public void onClick(View v) {
				// TODO Auto-generated method stub
				countdown.start();
			}
		});
		
		// btnStop
		final Button btnStop = (Button) findViewById(R.id.btnStop);
		// Perform action on click
		btnStop.setOnClickListener(new View.OnClickListener() {
			public void onClick(View v) {
				// TODO Auto-generated method stub
				countdown.cancel();
			}
		});

	}
	
	public class MyCountDown extends CountDownTimer {
		public MyCountDown(long millisInFuture, long countDownInterval) {
			super(millisInFuture, countDownInterval);
			// TODO Auto-generated constructor stub
		}

		@Override
		public void onFinish() {
			// TODO Auto-generated method stub
	        TextView result = (TextView) findViewById(R.id.txtResult);
	        result.setText("Finished!");
		}

		@Override
		public void onTick(long remain) {
			// TODO Auto-generated method stub
	        TextView result = (TextView) findViewById(R.id.txtResult);
	        int timeRemain = (int) (remain) / 1000;
	        result.setText(" Current : " + timeRemain);
		}

	}

}










Screenshot

Android and Count Down (CountDownTimer)

คลิกปุ่ม Start

Android and Count Down (CountDownTimer)

กำลังนับถอยหลัง

Android and Count Down (CountDownTimer)

กำลังนับถอยหลัง

Android and Count Down (CountDownTimer)

เมื่อทำงารเสร็จสิ้น สามารถแทรกคำสั่งอื่น ๆ ให้โปรแกรมทำงานต่อได้

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-09-08 09:34:28 / 2017-03-26 22:22:13
  Download : No files
 Sponsored Links / Related

 
Android and Collections Set
Rating :

 
Android and Timer (Java)
Rating :

 
Android and TimerTask (Java)
Rating :

 
Android Thread and Handler
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่