The first application developed for the operating system consists of androids that every time a button is clicked shows the date and time
package com.natalizi.android.Now;
import Android . app.Activity;
import android.os.Bundle;android.view.View import, import
android.widget.Button;import java.util.Date;
public class Now extends Activity implements View.OnClickListener { / ** Called When the activity is first created. * / Button btn;
@ Override public void onCreate(Bundle icicle)
{ super.onCreate(icicle); updateTime(); btn=new Button(this);
btn.setOnClickListener(this);
setContentView (btn);} public void onClick (View view) { updatetime ();
} private void}
0 comments:
Post a Comment