package com.commonsware.android.skeleton3;
import java.util.Date;
import java.text.SimpleDateFormat;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import java.util.Date;
public class NowRedux2 extends Activity{
Button btn;
SimpleDateFormat sf = new SimpleDateFormat("yyyy년 mm월 dd일 a HH:mm:ss");
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//main.xml 등록
setContentView(R.layout.main);
//button 객체 호출(이벤트 소스)
btn=(Button)findViewById(R.id.button);
//이벤트 소스와 이벤트 리스너가 구현된 객체를 연결
//익명 내부 클래스 형태의 이벤트 처리
btn.setOnClickListener(new View.OnClickListener() {
//이벤트 핸들러
public void onClick(View view){
updateTime();
}
});
updateTime();
}
private void updateTime(){
btn.setText(sf.format(new Date()));
}
}
<?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" >
<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>