-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
본 자료는 미리보기를 지원하지 않습니다.

-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136


목차
[assets]
[bin]
[classes]
[res]
AndroidManifest.xml
body.apk
classes.dex
jarlist.cache
resources.ap_
[gen]
[ptw]
[libs]
android-support-v4.jar
[res]
[drawable]
[drawable-hdpi]
[drawable-ldpi]
[drawable-mdpi]
[drawable-xhdpi]
[layout]
[menu]
[values]
[src]
[ptw]
.classpath
.project
AndroidManifest.xml
ic_launcher-web.png
lint.xml
proguard-project.txt
project.properties
2.50MB
파일 136, 폴더 26
[bin]
[classes]
[res]
AndroidManifest.xml
body.apk
classes.dex
jarlist.cache
resources.ap_
[gen]
[ptw]
[libs]
android-support-v4.jar
[res]
[drawable]
[drawable-hdpi]
[drawable-ldpi]
[drawable-mdpi]
[drawable-xhdpi]
[layout]
[menu]
[values]
[src]
[ptw]
.classpath
.project
AndroidManifest.xml
ic_launcher-web.png
lint.xml
proguard-project.txt
project.properties
2.50MB
파일 136, 폴더 26
본문내용
MAIN.java
package ptw.android;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
public class MAIN extends Activity {
Button bt1, bt2, bt3, bt4;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE); /* 타이틀 제거 */
setContentView(R.layout.main);
bt1 = (Button) findViewById(R.id.button1);
bt2 = (Button) findViewById(R.id.button2);
bt3 = (Button) findViewById(R.id.button3);
bt4 = (Button) findViewById(R.id.button4);
bt1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE1.class);
startActivity(intent);
}
});
bt2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE2.class);
startActivity(intent);
}
});
bt3.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE3.class);
startActivity(intent);
}
});
bt4.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE4.class);
startActivity(intent);
}
});
}
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
AndroidManifest.xml
package=\"ptw.android\"
android:versionCode=\"1\"
android:versionName=\"1.0\" >
android:minSdkVersion=\"8\"
android:targetSdkVersion=\"15\" />
android:icon=\"@drawable/ic_launcher\"
android:label=\"@string/app_name\"
android:theme=\"@style/AppTheme\" >
android:name=\".INTRO\"
android:label=\"@string/title_activity_main\" >
package ptw.android;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
public class MAIN extends Activity {
Button bt1, bt2, bt3, bt4;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE); /* 타이틀 제거 */
setContentView(R.layout.main);
bt1 = (Button) findViewById(R.id.button1);
bt2 = (Button) findViewById(R.id.button2);
bt3 = (Button) findViewById(R.id.button3);
bt4 = (Button) findViewById(R.id.button4);
bt1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE1.class);
startActivity(intent);
}
});
bt2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE2.class);
startActivity(intent);
}
});
bt3.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE3.class);
startActivity(intent);
}
});
bt4.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(), PAGE4.class);
startActivity(intent);
}
});
}
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
AndroidManifest.xml
android:versionCode=\"1\"
android:versionName=\"1.0\" >
android:targetSdkVersion=\"15\" />
android:label=\"@string/app_name\"
android:theme=\"@style/AppTheme\" >
android:label=\"@string/title_activity_main\" >
추천자료
모바일어플리케이션 사업계획서
안드로이드 자동차 블랙박스 어플리케이션
안드로이드_성범죄예방어플리케이션
안드로이드 어플을 이용한 RC카 제어
[졸업 작품 프로젝트] 과제제출용 시력검사 어플(앱.apk) (안드로이드) (hwp & pptx)
[졸업 작품 프로젝트] 과제제출용 목표설정 어플(앱,어플리케이션) (안드로이드)
[졸업 작품 프로젝트] 잠금화면 비번 틀리면 사진찍히는 어플(어플리케이션;앱) (안드로이드)...
[안드로이드 예제] GCM으로 푸시주는 어플(어플리케이션;앱) (안드로이드) DEVICE_TO_DEVICE_GCM
안드로이드 어플 계발 기획서( 1) 다이어트어플, 2) 관광객 어플
안드로이드mp3 어플리케이션 소스
소개글