11/08/2016

adb tools 설치 및 android 해상도 변경방법

1. Android Tools Install 

 https://developer.android.com/studio/index.html?hl=ko

 adb tool 만 사용한다면, android studio는 별도로 필요가 없으며,
아래의 설치 프로그램만 설치

 명령줄 도구만 다운로드
  • installer_r24.4.1-windows.exe  : adb , fastboot 포함 




  • 설치후 확인 

 C:\Program Files (x86)\Android\android-sdk\platform-tools 

2. Android 에서 해상도 변경 

해상도 변경 목적은 Samsung의 Smart view에서 화면이 너무 작게 나와서,
해상도를 변경통해 TV에서 전체화면으로 보려고 했으나 실패

아마도, Smart View Device에서 지원이 되어야 하는 것 같다.


  1. window의 cmd 실행 
  2. adb shell 실행  ( PATH가 설정이 되지 않았다면, 위 디렉토리 찾아가서 실행)
  3. echo %PATH%  (본인 PATH 확인방법) 

주의사항.

  • usb driver 설치 
  • phone이 usb 연결이 되어 있어야 함. 
  • 개발자모드로 전환하여, USB Debugging 허용 

2.1 adb shell 

window manager 인것 같고, density 는 dpi의 정보 인것 같으며,  dot per inch 이다.
overscan은 margin인 것 같은데, 추후 더 살펴보고 정리해야하겠다.


$ wm density 480
$ wm size 720x1280

원상태로 복귀

$ wm size reset
$ wm density reset


 각종 해상도 참조
 https://ko.wikipedia.org/wiki/%ED%95%B4%EC%83%81%EB%8F%84

 상위 명령어 참조
 http://android.stackexchange.com/questions/115484/resize-screen-to-display-only-on-working-part-of-semi-functional-touchscreen

 상위 명령어 참조
 http://dsct1472.tistory.com/565
 http://threeword.com/147

댓글 없음 :