리비전 44, 0.7 kB
(mefour에 의해 체크인됨, 15 년 전)
|
--
|
Line | |
---|
1 |
package soo.elements.activity; |
---|
2 |
|
---|
3 |
import android.app.Activity; |
---|
4 |
import android.os.Bundle; |
---|
5 |
import android.view.View; |
---|
6 |
import android.view.View.OnClickListener; |
---|
7 |
import android.widget.Button; |
---|
8 |
|
---|
9 |
public class SubActivity extends Activity { |
---|
10 |
@Override |
---|
11 |
public void onCreate(Bundle savedInstanceState) { |
---|
12 |
super.onCreate(savedInstanceState); |
---|
13 |
setContentView(R.layout.sub); |
---|
14 |
|
---|
15 |
Button b = (Button)findViewById(R.id.button04); |
---|
16 |
|
---|
17 |
b.setOnClickListener(new OnClickListener() { |
---|
18 |
|
---|
19 |
@Override |
---|
20 |
public void onClick(View v) { |
---|
21 |
// TODO Auto-generated method stub |
---|
22 |
finish(); //Activity媛�醫�����. destory()媛�諛�����. |
---|
23 |
} |
---|
24 |
}); |
---|
25 |
} |
---|
26 |
} |
---|