Showing posts with label IDE. Show all posts
Showing posts with label IDE. Show all posts

2013/01/01

IntelliJ IDEA SDK 설정하기



Java를 사용하는 경우는 안드로이드 공부를 할 때 밖에는 없지만 eclipse가 많이 느려서 빠르고 안정적인 Java 개발환경이라고 하는 IntelliJ 는 어떤 환경일지 궁금해서  설치를 해 보았다.



IntelliJ는 무료로 사용할 수 있는 Community Edition과 비용을 지불해야하는 Ultimate Edition으로 나뉘어 있으며 두 버전 모두 홈페이지에서 다운로드 받을 수 있다. 현재 최신 버전은 v12 이다.



개인적으로 설치형 프로그램을 그리 좋아 하지 않아 이번에도 가상 PC에 설치한 후 설치된 파일을 호스트 PC로 옮겨서 사용을 하였다.



처음 기동후 프로젝트를 만들어도 정상적인 프로젝트가 만들어지지 않았다. SDK설정이 되어있지 않아서 발생한 문제로 보였다. 기동후 SDK를 설정한 후 프로젝트를 생성하면 문제가 없었다



IntelliJ를 처음 기동할 때 설정할 수 있고 나중에도 설정이 가능하다. 아래 방법은 IntelliJ를 처음 기동할 때 설정하는 방법이다.



IntelliJ 처음 기동하는 화면에서 Configure 메뉴의 Project Default 하위 메뉴의 Project Structure 메뉴를 선택한다.





Project Structure 대화상자에서 좌측 메뉴의 Project를 선택하고 Project SDK 항목의 New... 버튼을 클릭하여 JDK메뉴를 선택하고 시스템에 설치되어 있는 JDK 경로를 설정한다.





안드로이드 개발을 위해서 같은 방법으로 Android SDK 경로를 설정하고 원하는 플랫폼 버전을 선택한다.



 

이제 IntelliJ 를 실행하면 설정된 SDK를 기반으로 프로젝트를 생성하게 된다.&

Original Post : http://neodreamer-dev.tistory.com/691

2010/05/11

[Android Dev.] Import 를 편하게 해주는 Eclipse 기능

안드로이드를 공부하면서 코딩을 하다보면 위젯을 많이 사용하게 된다. 위젯을 처음 사용할때마다 import 를 시켜주어야 하는데 처음에는 일일이 입력을 했었는데 Eclipse 에서 Import 를 아주 편하게 해 주는 기능을 찾았다.


Import 되지 않은 위젯을 사용하게 되면 아래 이미지에서 처럼 ...cannot be resolved to a type 이라는 에러가 발생한다.



이 때, Import 되지 않아 에러가 발생한 위젯에 마우스 커서를 올려 놓으면 잠시후에 아래 이미지와 같은 팝업 윈도우가 나타난다.



이 팝업 윈도우에서 맨 위에 있는 Import... 메뉴를 선택하면 해당 위젯이 Import 가 되고 에러가 사라진다.<

Original Post : http://neodreamer-dev.tistory.com/435

2009/12/06

Delphi IDE Fix Pack 2009/2010 2.8 Released

Embacadero RAD Studio 2009/2010 의 통합 개발 환경(IDE)의 버그를 수정한 IDE Fix Pack 이 2.8 버전을 공개하였다.

이번 버전에서 수정된 사항

RAD Studio 2010 fixes:
  • Undo destroys editor buffer
  • F1 key doesn’t work if invoked from the ObjectInspector
  • Vista compatible icons (256×256) aren’t supported
  • Stepping through the code can be slow

RAD Studio 2009 fixes:
  • Stepping through the code can be slow
  • Vista compatible icons (256×256) aren’t supported
  • Undo destroys editor buffer
  • 64 bit Debugger assertion
  • QC #71575: Delphi 2009 literal string assigment
  • QC #47242: Possible AV when shutting down the IDE
  • QC #47807: Error insight fails to find TObject class
  • Possible deadlock when Error Insight calls ProcessMessages
  • QC #37462: IDE may select the wrong file when performing a ctrl + left-click on a filename in the editor
  • QC #22880: Cannot resolve unit name
  • QC #58045: Component captions and component icons disappear from form designer
  • QC #69456: IDE dead lock when updating the editors
  • QC #55910: TDBText.Color always reverts to Parent.Color
  • QC #59963: Closing non-modal forms after a task switch can deactivate the application
  • QC #56252: TPageControl flickers a lot with active theming
  • QC #68730: TLabel is not painted on a themed, double-buffered TTabSheet in Vista
  • ToolsAPI IOTAProjectOptions.GetOptionNames destroys options.
  • QC #74646: Buffer overflow in TCustomClientDataSet.DataConvert with ftWideString
IDE Fix Pack 2.8 webpage
Original Post :
http://neodreamer-dev.tistory.com/343