Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 유한상태기계
- DFS
- 유니티
- 안드로이드
- 이분탐색
- 웅진씽크빅
- 시리얼라이제이션
- 이득우
- fsm
- upper_bound
- unreal
- UI 자동화
- 운영체제
- 언리얼
- c++
- 게임개발
- 구현
- 프로그래머스
- 너비우선탐색
- c#
- 게임개발공모전
- 백준
- lower_bound
- 인프런
- BFS
- 알고리즘
- unity
- 개발일지
- 재귀
- binary_search
Archives
- Today
- Total
목록Android (1)
초고교급 희망

구글링해서 나오는 예제는 Activity가 많은데 졸업 프로젝트를 Fragment로 하게 됐다. 예제의 Activity코드를 내 프로젝트에 Fragment로 옮겨오는 법... 1. onCreate의 내용은 onCreateView에 넣는다. 2. findViewById 앞에 뷰 적기 Activity일 때 button = (Button)findViewById(R.id.button); Fragment일 때 View myView = inflater.inflate(R.layout.fragment_ocr, container, false); galleryBtn = (Button)myView.findViewById(R.id.galleryBtn); 3.resultCode를 쓴다면 이것도 앞에 액티비티 적어주기 Activ..
Android
2022. 5. 24. 14:25