Saturday, May 16, 2020

CountDownTimer in Android Example

What is a CountDownTimer ? 


A CountDownTimer  is a class in Android which enables us to do something at regular intervals.

There are 2 important methods on CountDownTimer  Class

1: onTick(long)  : in this method we write code to do something at regular intervals
2: onFinish() : code to execute when timer ends.


Example :

In our example, we assume that have given some task to user to finish in 10 seconds.

We will show count 1, 2, 3 ... and on till 10th seconds and show "Time Over" when 10 seconds ends.


Lets Start :

Create a new Project

activty_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
 android:layout_width="fill_parent"    
 android:layout_height="fill_parent"   
 android:orientation="vertical" >


    <TextView        
       android:id="@+id/textViewCounter"        
       android:textSize="50dp"        
       android:gravity="center"        
       android:layout_width="match_parent"        
       android:layout_height="match_parent"        
       android:text="Time Starts" />

</LinearLayout>


MainActivity.java



import android.os.Bundle;
import android.os.CountDownTimer;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity
{

    TextView textViewCounter;
    int counter = 0;
    CountDownTimer myTimer = new CountDownTimer(10000, 1000) {
        @Override       
        public void onTick(long l) {

            // set the counter and increase it by 1          
            textViewCounter.setText(""+counter);
            counter++;
        }

        @Override        
       public void onFinish() {

            textViewCounter.setText("Time Over");
        }
    };


    @Override    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        textViewCounter = (TextView)findViewById(R.id.textViewCounter);

        // start the timer       
         myTimer.start();

    }


}


Result :









 

New Advance Topics:                   Android LiveWallpaer Tutorial
Android ImageSwitcher                    Android TextSwitcher                                Android ViewFlipper
Android Gesture Detector               Handling/Detecting Swipe Events                Gradient Drawable
Detecting Missed Calls                    Hide Title Bar                                           GridView Animation
Android AlarmManager                 Android BootReceiver                       Vibrate Phone In a Desirable Pattern    
Developing for Different Screen Sizes           Showing Toast for Longer Time       Publishing your App
How to publish Android App on Google Play
Android TextWatcher                               Android ExpandableListView
Android Image Slider Example
Android Custom GridView Example
Android MediaPlayer Example
Android Text To Speech Example
How to check Radiation Level of Android Phone
How to find Advertising ID of Android Phone
CountDownTimer in Android Example


 Beginning With Android
      Android : Introduction(What is Android)                                                              Configuring Eclipse for Android Development
     Creating Your First Android Project                                           Understanding Android Manifest File of your android app

 Advance Android Topics                                                              Customizing Android Views

      Handling Keyboard Events                                                        Animating A Button In Android
                                                                                                         Android ViewAnimator Example

Working With Layouts                                                                Working With Views

Understanding Layouts in Android                                                   Using Buttons and EditText in Android
Working with Linear Layout (With Example)                                     Using CheckBoxes in Android
Nested Linear Layout (With Example)                                              Using AutoCompleteTextView in Android                                                                                          Grid View
Relative Layout In Android                                                               ListView
Table Layout                                                                                   Android ProgressBar
Frame Layout(With Example)                                                          Customizing ProgressBar
Absolute Layout                                                                             Customizing Radio Buttons
Grid Layout                                                                                    Customizing Checkboxes In 
Android
                                                                                                        Android RatingBar Example
                                                                           Deeveloping Simple Calculator App in Android

Android Advance Views
Android Spinner                                                                           Android GalleryView
Android TabWidget                                                                      Android ExpandableListView

Android Components                                                                 Dialogs In Android

Activity In Android                                                                    Working With Alert Dialog
Activity Life Cycle                                                                    Adding Radio Buttons In Dialog
Starting Activity For Result                                                       Adding Check Boxes In Dialog
Sending Data from One Activity to Other in Android                    Creating Customized Dialogs in Android
Returning Result from Activity      
PreferenceActivity In Android                                            Creating Dialog To Collect User Input
Android : Service                                                                     DatePicker and TimePickerDialog
BroadcastReceiver                                                                   Using TimePickerDialog and DatePickerDialog In android

Menus In Android                                                                ListView:
Creating Option Menu                                                               Populating ListView With DataBase
Creating Context Menu In Android                                              Populating ListView with ArrayList
                                                                                               ListView with Custom Adapter

Toast                                                                                      Working With SMS
Customizing Toast In Android                                                       How to Send SMS in Android
Customizing the Display Time of Toast                                        How To Receive SMS
Customizing Toast At Runtime                                                  Accessing Inbox In Android
Adding Image in Toast
Showing Toast for Longer Time


TelephonyManager                                                            Storage: Storing Data In Android
Using Telephony Manager In Android                                          SharedPreferences In Android
                                                                                              Reading and Writing files to Internal Stoarage

Working With Incoming Calls                                       DataBase :  Introduction of SQLiteDataBase
How To Handle Incoming Calls in Android                                Working With Database in Android
How to Forward an Incoming Call In Android                            Creating Table In Android
CALL States In Android                                                          Inserting, Deleting and Updating Records In Table in Android


Miscellaneous
Notifications In Android
How To Vibrate The Android Phone
Sending Email In Android
Opening a webpage In Browser
How to Access PhoneBook In Android
Prompt User Input with an AlertDialog
How to Hide Title Bar In Android
How to show an Activity in Landscape or Portrait Mode only.
How to Set an Image as Wallpaper.





2 comments:

  1. Hello, I am a highly motivated and results-driven professional, with a proven track record of success; i am always seeking new challenges and opportunities to expand my skills and knowledge, and am excited to bring my expertise to your organization." Follow us to find out more /t-n-z3pijee/

    ReplyDelete