안드로이드(2)
-
유니티 플랫폼별 경로 정리
[윈도우 에디터] Application.persistentDataPath : 사용자디렉토리/AppData/LocalLow/회사이름/프로덕트이름 파일 읽기 쓰기 가능 Application.dataPath : 프로젝트디렉토리/Assets Application.streamingAssetsPath : 프로젝트디렉토리/Assets/StreamingAssets 파일 읽기 쓰기 가능 [윈도우 응용프로그램] Application.persistentDataPath : 사용자디렉토리/AppData/LocalLow/회사이름/프로덕트이름 파일 읽기 쓰기 가능 Application.dataPath : 실행파일/실행파일_Data Application.streamingAssetsPath : 실행파일/실행파일_Data/Streami..
2016.07.19 -
안드로이드 디바이스 화면 크기 구하기
기존에 화면사이즈를 받아오던 getWidth(), getHeight() 함수가 3.2 버전부터 사용이 중지되었고, Point pt = new Point();getWindowManager().getDefaultDisplay().getSize(pt);((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay().getSize(pt);int height = pt.x;int width = pt.y; 이런 정도로 고쳐쓰던 것마저 사용이 불가한 API버전이 있어서 완전한 해결책이 못되는 상황... 그래서...현재 사용가능한 소스 :DisplayMetrics dm = getApplicationContext().getResources().getDispla..
2015.01.20