본문 바로가기
반응형

분류 전체보기338

Android Studio All Search 정의된 모든 것 검색하기 androidstudio_search.html Android Studio Search 정의된 모든 것 검색하기‘Ctrl + Alt + Shift + N’클래스, 변수, 스타일, 테마 등을 한번에 검색하기 위해서는 위 단축키를 입력한다. generated by haroopad 2016. 3. 3.
Android Studio Style, Theme 확인하기 androidstudio_styletheme.html Android Studio Style Theme 확인하기‘Ctrl + Shift + I’Android Studio 에서 xml 파일 내의 정의된 Style 을 확인하고 싶을 때가 있다.확인하고 싶은 값에 커서를 위치시키고 Ctrl + Shift + I 를 누르면 정의된 Style 에 대한 정의가 간략하게 표시된다. generated by haroopad 2016. 3. 3.
Android Invisible Button Action 투명 버튼 클릭 안드로이드에 화면 가장자리를 특정 패턴으로 클릭할 때 어떤 이벤트를 주고 싶었다.일반적으로 버튼에 Invisible 효과를 부여하면 버튼 클릭을 인식하지 못한다. 아래와 같이 처리하면 클릭 이벤트를 받을 수 있다. Button.setVisibility(view.VISIBLE); Button.setBackgroundColor(Color.TRANSPARENT); 2016. 2. 12.
Mac Nodeclipse Cannot run program "node" Mac에서 이클립스에 node 플러그인을 설치하고 기본 node express project를 생성한 후 Run as 를 실행 했을 때 Cannot run program "node" no such directory... 등의 에러가 날 때가 있다. 이는 터미널 경로와 이클립스 실제 경로가 일치하지 않아 발생하는 문제이다. 이럴 경우 sudo vi /etc/launchd.conf 를 생성하여 setenv PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin 를 입력하고 mac을 재부팅 하면 정상적으로 실행된다. It appears in Mac OS X 10.8 (and possible earlier) GUI apps do not get the same path as th.. 2016. 2. 12.
eclipse An error has occurred. See the log file .metadata/.log. In that case , delete plugin folder1. Close Eclipse.2. Delete: /YOUR PATH TO WORKSPACE/.metadata/.plugins/org.eclipse.core.resources3. Launch eclipse. 2016. 2. 12.
Mac 내 컴퓨터의 os bit 확인 (Check Mac os bit) 터미널 창을 열어서 다음과 같이 sysctl hw | grep 64bit 를 이용하여 확인할 수 있다.(oprn terminal and type sysctl hw | grep 64bit ) 위와 같이 명령어를 쳤을 때 1 이면 64bit, 0이면 32bit 이다. (if print '1' your mac is 64bit , if print '0' your mac is 32bit) 2016. 2. 12.