안드로이드 각종 계산기 어플 (body)
닫기
  • 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
해당 자료는 10페이지 까지만 미리보기를 제공합니다.
10페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

안드로이드 각종 계산기 어플 (body)에 대한 보고서 자료입니다.

목차

[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

본문내용

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\" >
      
        

        
      

    
    
    
    
    
    
    
  

키워드

  • 가격3,300
  • 페이지수136페이지
  • 등록일2014.04.13
  • 저작시기2013.10
  • 파일형식압축파일(zip)
  • 자료번호#913303
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니