리비전 58, 0.7 kB
(mefour에 의해 체크인됨, 15 년 전)
|
--
|
Line | |
---|
1 |
package soo.data.preferencetest; |
---|
2 |
|
---|
3 |
import android.app.Activity; |
---|
4 |
import android.content.Intent; |
---|
5 |
import android.os.Bundle; |
---|
6 |
import android.view.View; |
---|
7 |
import android.view.View.OnClickListener; |
---|
8 |
import android.widget.Button; |
---|
9 |
|
---|
10 |
public class SubActivity extends Activity { |
---|
11 |
@Override |
---|
12 |
public void onCreate(Bundle savedInstanceState) { |
---|
13 |
super.onCreate(savedInstanceState); |
---|
14 |
setContentView(R.layout.sub); |
---|
15 |
|
---|
16 |
final Button b = (Button)findViewById(R.id.s_button01); |
---|
17 |
|
---|
18 |
b.setOnClickListener(new OnClickListener() { |
---|
19 |
|
---|
20 |
@Override |
---|
21 |
public void onClick(View v) { |
---|
22 |
// TODO Auto-generated method stub |
---|
23 |
Intent i = new Intent(SubActivity.this,PreferenceTest.class); |
---|
24 |
startActivity(i); |
---|
25 |
} |
---|
26 |
}); |
---|
27 |
} |
---|
28 |
} |
---|