StopwatchActivity.java :  » Clock » the-essential-clock » ch » mpetermann » android » clock » Android Open Source

Android Open Source » Clock » the essential clock 
the essential clock » ch » mpetermann » android » clock » StopwatchActivity.java
package ch.mpetermann.android.clock;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class StopwatchActivity extends Activity {
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        TextView textview = new TextView(this);
        textview.setText("This is the Stopwatch tab");
        setContentView(textview);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.