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 | 31 | 
													Tags
													
											
												
												- 북클럽
- Android
- 알고리즘
- 클린코드
- RecyclerView
- 트렐로 삭제
- 백준
- 액티비티
- 노개북
- 지하철api
- 부스트코스
- 사용자폴더
- codility
- github
- 노마드코더
- 데이터바인딩
- listview
- CardView
- androidstudio
- BOJ
- 윈도우10
- Node.js
- CS50
- 안드로이드
- activity
- 부스트캠프
- 선형레이아웃
- Windows10
- java
- 노마드북클럽
													Archives
													
											
												
												- Today
- Total
목록Android (17)
Be Developer
 [Android] FrameLayout + CardView 사용 시 정상적으로 배치가 안되는 경우
			
			
				[Android] FrameLayout + CardView 사용 시 정상적으로 배치가 안되는 경우
				FrameLayout > CardView > ImageView 순서로 배치하였으나 ImageView가 최상위에 보이지 않을 때, CardView를 LinearLayout으로 감싸주면 정상적으로 배치된다.
				Android/Error&Solve
				
				2021. 1. 12. 20:15
			
		
			
			
				[Android] No layout manager attached; skipping layout
				
	
	
               
           
               
	
		No layout manager attached; skipping layout RecyclerView에 LayoutManager가 설정되지 않았을 때 발생하는 에러이다. ✅선언 시 LayoutManager를 빼먹지 않도록 주의할 것!
				Android/Error&Solve
				
				2021. 1. 12. 18:48
			
		
			
			
				[Android] Titlebar 삭제하기
				
	
	
               
           
               
	
		1) style.xml의 테마 안에 해당 코드를 추가한다. false true 2) AndroidManifest.xml 파일의 application theme를 해당 코드로 변경한다.
				Android
				
				2020. 10. 6. 22:11
			
		 [Android] Infinite/Endless Scrolling (무한 스크롤)
			
			
				[Android] Infinite/Endless Scrolling (무한 스크롤)
				트위터나 페이스북에서 흔히 볼 수 있는 무한 스크롤을 구현해보자. 1. RecyclerView를 구현하고 2. Scroll이 끝에 닿았을 경우 NULL 요소를 추가하고 Adapter에 알린다. 3. 새로운 데이터 요소 집합을 가져온 후 4. NULL요소를 제거 한 후 추가하고 Adapter에 알린다. 코드 RecyclerViewAdapter.java public class RecyclerViewAdapter extends RecyclerView.Adapter { private final int VIEW_TYPE_ITEM = 0; private final int VIEW_TYPE_LOADING = 1; private List items; public RecyclerViewAdapter(List items)..
				Android
				
				2020. 4. 8. 12:40