일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드개발레벨업교과서
- 리사이클러뷰
- fragment
- 구분선
- LayoutManger
- binding adapter
- Android
- 안드로이드13
- IntentTestRule
- 뷰변경 감지
- 코딜리티
- 테마 아이콘
- Fragment에서 Activity의 함수 사용하기
- espresso
- 안드로이드
- viewholder
- ui test
- 생명주기
- ActivityTestRule
- Error:Execution failed for task ':app:mergeDebugResources'
- searchview
- 재사용
- 고차함수
- 스와이프
- adapter
- Fragment 수동 추가
- recyclerview
- 코틀린
- high order function
- 안드로이드스튜디오
Archives
- Today
- Total
룬아님의 취중코딩
1. 안드로이드 개발 레벨업 교과서 (안드로이드 스튜디오) 본문
https://book.naver.com/bookdb/book_detail.nhn?bid=12107989
이 글은 개인적인 공부를 위해 책을 읽고 정리한 내용입니다.
안드로이드 스튜디오 단축키
control + r (Shift + F10) : 빌드
command + p (Ctrl + p) 파라미터 보여주기
command + shift + a (Shift + Shift (전체 검색)) 액션 전체 검색
command + n (Alt + Insert) generate 열기
command + alt + v (control + alt + v)로컬 변수로 생성
command + alt + f (멤버 변수로 생성)
command + e(Crtl + e)
command + shift + o (Ctrl + Shift + Alt + n) 심볼 검색
디버깅 관련
브레이크 걸렸을 때 전자 계산기 모양을 누르면 v.getVisibility() == View.VISIBLE 같은 코드를 넣어 테스트 할 수 있다.
브레이크 포인트에 오른쪽 클릭을 하여 조건을 설정할 수 있다.
Activity의 데이터를 유지하자
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
mText = mEditText.getText().toString();
outState.putString("EDIT_TEXT" , mText);
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
mText = savedInstanceState.getString("EDIT_TEXT");
}
반응형
'개발 > 안드로이드 개발 레벨업 교과서' 카테고리의 다른 글
3. 안드로이드 개발 레벨업 교과서 (RecyclerView) (0) | 2019.08.20 |
---|---|
2-2. 안드로이드 개발 레벨업 교과서 (View) (0) | 2019.08.18 |
2. 안드로이드 개발 레벨업 교과서 (Activity) (0) | 2019.08.16 |
Comments