회원로그인
. 전체검색 결과
- 게시판
- 4개
- 게시물
- 49개
1/5 페이지 열람 중
Android 게시판 내 결과
-
8.26.2015
새창
안드로이드 화면구성어플리케이션 실행 -> xml 파일 내용 메모리에 객체화: inflation
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-26 11:10:01 -
8.25.2015
새창
Activity restart 하지 않고 처리할 수 있는 방법Handle the configuration change yourselfyour activity handles the configuration change itselfconfiguration이 바뀌면 callback을 받는다.<activity> element를 수정한다.ex)android:configChanges="orientation|keyboardHidden"->configuration이 바뀌면 ->onConfigurationChanged()가 …
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-25 13:43:54 -
8.24.2015
새창
portrait: verticallylandscape: horizentallyactivity:an application component that provides a screen with which users can interact in order to do something, such as dial the phone, take a photo, send an email, or view a map.main activity: application 처음 launch 할 때 나오는 activity새로운 activity 시작 할 때 마다, …
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-25 00:03:30 -
8.2.2015
새창
EditText android:id="@+id/edit_message"This provides a unique identifier for the view, which you can use to reference the object from your app code, such as to read and manipulate the object (you'll see this in the next lesson).The at sign (@) is required when you're referring to any resou…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-03 00:20:28 -
7.30.2015
새창
RxJava 한글 설명(http://tmondev.blog.me/220330530620)http://deview.kr/2014/session?seq=4ISO 639 is a standardized nomenclature used to classify all known languages. Each language is assigned a 2-letter (639-1) and 3-letter (639-2 and 639-3), lowercase abbreviation, amended in later versions of the nomen…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-07-30 19:08:06 -
7.28.2015
새창
A glitch is a short-lived fault in a system (source: wikipedia) boilerplate code or boilerplate is the sections of code that have to be included in many places with little or no alteration. i.e. the programmer must write a lot of code to do minimal jobs. (source: wikipedia) domain-specific langua…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-07-28 17:40:05 -
7.27.2015
새창
The observer pattern is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. It is mainly used to implement distributed event handling sy…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-07-27 17:22:04 -
7.26.2015
새창
Ctrl Shift NShift F6전체: activity화면 구성 부속품 통틀어: View화면에 보이는 것들(텍스트, 버튼, 체크박스 등): Widget레이아웃: ViewGroup레이아웃만이 다른 태그 담을 수 있다.layout_margin: 바깥 여백layout_padding: 안쪽 여백lambdapublic class Java8Tester { public static void main(String args[]){ Java8Tester tester = new Java8Tester(); MathOperation additi…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-07-27 16:45:21
Java 게시판 내 결과
-
4. 배열과 ArrayList
새창
array 초기값 number: 0 boolean: false Object References: nullarray 크기: length 필드 data.length배열은 객체로 취급Collection ArrayList private ArrayList<String> files = new ArrayList<String>(); type parameter generic class 상황에 맞춰 용량이 자동으로 조정됨(array와 다른 점)Iterating over collections1. for-each for(St…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-03 20:08:28 -
3. 클래스 구현
새창
클래스 구현 순서1. 클래스의 공개 인터페이스(Public interface) 설계 -지원되는 메소드 종류, 메소드 사용법2. 메소드 선언(사용 사례 적어 봄)3. 구성자 선언 객체 필드 초기화 반환값 X 파라미터 리스트 다른 여러 개 구성자 있을 수 있다.4. 주석 기입 및 API 문서 제작5. 필드 선언6. 메소드 구현 -int... values: variable number of parameters7. 테스트지역변수와 필드가 같은 이름을 가질 때는 지역변수가 필드를 가린다(shadow). 가려진 필드에 접근: this.valu…
Ryangkyung 쪽지보내기 메일보내기 자기소개 전체게시물 2015-08-01 19:17:44