package com.commonsware.android.skeleton2;
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 NowRedux extends Activity implements View.OnClickListener{
//이벤트 리스너
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(this);
updateTime();
}
//이벤트 핸들러
public void onClick(View view){
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" >
<!-- fill_parent = 부모영역까지 채운다 wrap_parent =감싼다 -->
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>