
-
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


목차
[gameapp]
[assets]
[bin]
[gen]
[res]
[src]
.classpath
.project
AndroidManifest.xml
proguard-project.txt
project.properties
gameapp.apk
725KB
파일 61, 폴더 28
종합게임어플 보고서.hwp……………………………16p
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
종합게임어플 보고서.hwp
1. MainStartActivity
2. NumbergameActivity
3. RandomgameActivity
4. scissorsrockpaper
5. yutActivity
[assets]
[bin]
[gen]
[res]
[src]
.classpath
.project
AndroidManifest.xml
proguard-project.txt
project.properties
gameapp.apk
725KB
파일 61, 폴더 28
종합게임어플 보고서.hwp……………………………16p
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
종합게임어플 보고서.hwp
1. MainStartActivity
2. NumbergameActivity
3. RandomgameActivity
4. scissorsrockpaper
5. yutActivity
본문내용
종합게임어플 보고서.hwp
이 Application은 Total game Application 으로서, 간단하게 즐길 수 있는 게임 4가지를 묶어서 하나의 Application으로 개발 하게 되었다.
이 Application은MainStartActivity, NumbergameActivity, RandomgameActivity, ScissorsrockpaperActivity, yutActivity 이렇게 5가지로 구성되어있다.
1. MainStartActivity
이 Application의 시작화면 페이지이다.
XML레이아웃의 구성은 배경화면을 넣은후에 Linear Layout으로 페이지를 묶고, 버튼 4개를 구성하여, 숫자게임, 제비뽑기게임, 가위바위보게임, 윷놀이게임을 각각 연결시켜놓았고 TextView를 사용하여 Application의 명칭을 입력해놓았다.
main.xml 소스의 구성
android:layout_width=\"fill_parent\"
android:layout_height=\"fill_parent\"
android:background=\"@drawable/cat\"
android:orientation=\"vertical\" >
android:id=\"@+id/button1\"
android:onClick=\"NumberIntent\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:text=\"숫자게임\" />
≪ … 중 략 … ≫
5.yutActivity
윷놀이 게임은 모두가 잘아는 우리나라 전통놀이 이므로 게임 설명은 생략하겠다.
XML파일의 구성을 보면 LinearLayout으로 묶어준 후에 TextView를 이용하여 “윳을던지세요”라는 문구를 출력한다. 그후에 ImageView를 2개씩 다시 LinearLayout으로 묶어서 윷 모양을 이미지로 나타낸다. 그 아래쪽으로 TextView를 이용하여 결과값을 나타내고 그아래에 던지기 Button을 만들어 화면 구성을 완성하였다.
yut.xml의 소스 구성
android:orientation=\"vertical\"
android:layout_width=\"fill_parent\"
android:layout_height=\"fill_parent\"
android:background=\"@drawable/cat\">
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
AndroidManifest.xml
package=\"hnu.ac.kr\"
android:versionCode=\"1\"
android:versionName=\"1.0\" >
android:icon=\"@drawable/ic_launcher\"
android:label=\"@string/app_name\" >
android:name=\".MainStartActivity\"
android:label=\"@string/app_name\" >
android:name=\".NumbergameActivity\"
android:label=\"@string/app_name\" >
android:name=\".ScissorsrockpaperActivity\"
android:label=\"@string/app_name\" >
android:name=\".RandomgameActivity\"
android:label=\"@string/app_name\" >
android:name=\".yutActivity\"
android:label=\"@string/app_name\" >
이 Application은 Total game Application 으로서, 간단하게 즐길 수 있는 게임 4가지를 묶어서 하나의 Application으로 개발 하게 되었다.
이 Application은MainStartActivity, NumbergameActivity, RandomgameActivity, ScissorsrockpaperActivity, yutActivity 이렇게 5가지로 구성되어있다.
1. MainStartActivity
이 Application의 시작화면 페이지이다.
XML레이아웃의 구성은 배경화면을 넣은후에 Linear Layout으로 페이지를 묶고, 버튼 4개를 구성하여, 숫자게임, 제비뽑기게임, 가위바위보게임, 윷놀이게임을 각각 연결시켜놓았고 TextView를 사용하여 Application의 명칭을 입력해놓았다.
main.xml 소스의 구성
android:layout_height=\"fill_parent\"
android:background=\"@drawable/cat\"
android:orientation=\"vertical\" >
android:id=\"@+id/button1\"
android:onClick=\"NumberIntent\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:text=\"숫자게임\" />
≪ … 중 략 … ≫
5.yutActivity
윷놀이 게임은 모두가 잘아는 우리나라 전통놀이 이므로 게임 설명은 생략하겠다.
XML파일의 구성을 보면 LinearLayout으로 묶어준 후에 TextView를 이용하여 “윳을던지세요”라는 문구를 출력한다. 그후에 ImageView를 2개씩 다시 LinearLayout으로 묶어서 윷 모양을 이미지로 나타낸다. 그 아래쪽으로 TextView를 이용하여 결과값을 나타내고 그아래에 던지기 Button을 만들어 화면 구성을 완성하였다.
yut.xml의 소스 구성
android:layout_width=\"fill_parent\"
android:layout_height=\"fill_parent\"
android:background=\"@drawable/cat\">
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
AndroidManifest.xml
android:versionCode=\"1\"
android:versionName=\"1.0\" >
android:label=\"@string/app_name\" >
android:label=\"@string/app_name\" >
android:label=\"@string/app_name\" >
android:label=\"@string/app_name\" >
android:label=\"@string/app_name\" >
android:label=\"@string/app_name\" >
소개글