기본 콘텐츠로 건너뛰기

이클립스 안드로이드 SDK 설치 하기

1. 이클립스 설치하기
http://createlee75.blogspot.kr/2016/10/java-hello-world.html

* Help - install New Software 클릭

* 플러그인 설치 설치하기

Add 클릭하기

* Name:ADT
* Location:   https://dl-ssl.google.com/android/eclipse/



* Next 눌러서 설치 완료

* 이클립스가 재시작됩니다.

* 안드로이드 SDK 설치

그러면 안드로이드 SDK를 찾게 됩니다.
https://developer.android.com/studio/index.html
* Windows에서 zip 버전을 다운 받아서 압축을 풀구 위치를 선택한다.

* 원하는 버전의 SDK를 설치하면 개발 준비 끝

* 로그 남기기 레벨

Log.v(TAG,"Log Level : Verbose");
Log.d(TAG,"Log Level : Debug");
Log.i(TAG,"Log Level : Info");
Log.w(TAG,"Log Level : Warning");
Log.e(TAG,"Log Level : Error");

logcat 이용방법:

http://cluster1.cafe.daum.net/_c21_/bbs_search_read?grpid=1MWA2&fldid=aAfL&datanum=68

안드로이드 스튜디오 설치하기

https://developer.android.com/studio/index.html

댓글

이 블로그의 인기 게시물

dmesg 메시지 실시간으로 보기

참조사이트 http://imitator.kr/Linux/556 # tail -f /var/log/messages # tail -f |dmesg //기본 2초 단위로 갱신 된다. # watch "dmesg | tail -f" //1초 단위로 갱신하면서 보여준다. # watch -n 1 "dmesg | tail -f" // 보여주는 줄을 20으로 늘린다. (기본 10줄) # watch -n 1 "dmesg | tail -f -n 20"

java 특정 디렉토리에 있는 파일 목록을 읽어내기, 정렬해서 가져오기

폴더 리스트 가져오기 String path="C:\"; File dirFile=new File(path); File []fileList=dirFile.listFiles(); for(File tempFile : fileList) {   if(tempFile.isFile()) {     String tempPath=tempFile.getParent();     String tempFileName=tempFile.getName();     System.out.println("Path="+tempPath);     System.out.println("FileName="+tempFileName);     /*** Do something withd tempPath and temp FileName ^^; ***/   } } 정렬해서 가져오기 import java.io.FileFilter; import java.io.IOException; import java.util.Arrays; import java.util.Date; import org.apache.commons.io.comparator.LastModifiedFileComparator; import org.apache.commons.io.filefilter.FileFileFilter; public class LastModifiedFileComparatorTest { public static void main(String[] args) throws IOException { File directory = new File("."); // get just files, not directories File[] files = directory.listFiles((FileFilter) FileFileFilter.FILE); System.out.println("Defaul...