이글루스 | 로그인
메뉴릿
카테고리
전체
공지사항
계획
Languages
Humanities
Mathematics
Education
Economics
Computers
HCI
Media
Engineering
Natural Science
TmaxSoft
BluemoonSoft
미분류
최근 등록된 덧글
제가 갖고 있는 소스 파일..
by 언제나19 at 10/17
우왕 고맙습니다~~. ..
by 언제나19 at 10/16
http://nethack.byus..
by uriel at 10/16
근본적으로 activation ..
by uriel at 10/16
다운 안되는데여;;;;;
by 강병진 at 10/14
일단, 형변환 자체가 ..
by uriel at 04/11
어제는 괜히 xfix 실행..
by 언제나19 at 01/18
좀 기다리세요. 내년 4..
by 언제나19 at 11/04
바꾸어라.. 언제나19-..
by kang at 11/03
네 블로그는 언제나 삽..
by kang at 11/03
최근 등록된 트랙백
textcube를 다시 설치
by 공부가 본업.
gnuplot을 c 함수로 ..
by 상품 + 글 의견 남기기
gsl, gnu scientific li..
by 상품 + 글 의견 남기기
ubuntu, ati에서 dual..
by 상품 + 글 의견 남기기
Data browser로 sql d..
by 공부가 본업.
근황
by Yi jeon goo
근황
by Yi jeon goo
라이프로그
화려한 휴가
화려한 휴가

좋지 아니한가
좋지 아니한가

300
300

포토로그

언제나19의 포토로그
메모장 실험
메모장도 로그가 남나 실험
이전블로그
more...
이글루링크
◈ ◈ ◈ 바다가 머무는 ..
Mono log
Liard's newspaper
Yochin의 대전생활.
M log
art.oriented
* Sea of Blue *
이글루 파인더
rss

skin by 狂風
android sdk 설치

 
1. Download  를 보고 android sdk랑 eclipse를 download
2. Installing  을 보고 eclipse plugin으로 설치
3. android virtual device의 profile을 만들고, emulator를 실행시켜 보기
4. http://developer.android.com/guide/tutorials/hello-world.html 를 보고 android 프로젝트 만들어서 컴파일, 실행




eclipse ganymede를 받았다.

http://developer.android.com/sdk/1.5_r1/installing.html

  1. Start Eclipse, then select Help > Software Updates....
  2. In the dialog that appears, click the Available Software tab.
  3. Click Add Site...

Enter the Location:

https://dl-ssl.google.com/android/eclipse/

If you have trouble aqcuiring the plugin, try using "http" in the Location URL, instead of "https" (https is preferred for security reasons).

Click OK.

에서 https를 http로 바꿔서 등록하고 install했다.

android create avd --target 2 --name my_avd
이라고 명령해서 avd를 만들어놓고,
emulator.exe -avd my_avd 로 emulator를 실행시킬 수 있다.

http://developer.android.com/guide/tutorials/hello-world.html
페이지를 보고,
package com.android.helloandroid;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloAndroid extends Activity {
   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       TextView tv = new TextView(this);
       tv.setText("Hello, Android");
       setContentView(tv);

   }
}
대로 적고서 안드로이드 emulator를 켜면서 Run 했는데,
emulator와 project가 버전이 안맞아서 그런지
반응은 있는데 실행이 안되네.
apk가 install됐다는 log만 뜬다.

이 글과 관련있는 글을 자동검색한 결과입니다 [?]

by 언제나19 | 2009/05/01 20:59 | Computers | 트랙백 | 덧글(0)
트랙백 주소 : http://always19.egloos.com/tb/2337335
☞ 내 이글루에 이 글과 관련된 글 쓰기 (트랙백 보내기) [도움말]

:         :

:

비공개 덧글


◀ 이전 페이지 다음 페이지 ▶