일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring
- 알고리즘
- jpa
- Spring Boot
- pointcut
- Servlet
- 김영한
- QueryDSL
- db
- 그리디
- Exception
- Thymeleaf
- Android
- SpringBoot
- kotlin
- springdatajpa
- Proxy
- 스프링 핵심 원리
- 인프런
- transaction
- 백준
- Greedy
- 스프링
- java
- AOP
- 자바
- JDBC
- http
- 스프링 핵심 기능
- JPQL
- Today
- Total
목록kotlin (21)
개발자되기 프로젝트
RecyclerView는 ListView의 확장판으로 볼 수 있다. RecyclerView는 Adapter의 ViewHolder를 사용하여 View를 재활용 한다. RecyclerView는 화면에 보이는 View만 생성한다. 1. Item Layout 각 item이 어떻게 들어갈지 와꾸(?)를 잡아야 한다. 2. 사용할 Activity에서 RecyclerView 추가 3. Adapter 생성 itemLayout과 data를 연결하는 역할 //사용할 data를 받음, RecyclerView의 Adapter 상속 class RvAdapter(val items: MutableList) : RecyclerView.Adapter(){ //ViewHolder객체 생성 및 리턴 override fun onCreate..
Activity -> Adapter로 데이터 전달 Adapter는 각각의 item에 해당하는 view 생성하여 LIstView에 전달 1. Activity class SentenceActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_sentence) val sentenceList = mutableListOf() sentenceList.add("검정화면에 대충 흰 글씨") sentenceList.add("명언1") sentenceList.add("명언2") sentenceList.add..
list에서 random값은 random()호출하면 끝 list.random()
1. Splash Screen - 스플래시 스크린은 앱 구동시 보여주는 화면임. 2. Handler Main thread가 있고 별도의 Thread가 있다고 해보자. 만약 두 thread가 동시에 textView의 setText를 실행한다고 가정하자. - MainThread: setText("from Main") - BThread: setText("from B") 이렇게 동시에 시도하면 문제가 발생한다. 따라서 MainThread가 아닌 Thread는 Handler를 사용한다. Handler의 역할은 MainThread로 다른 Thread의 message를 전달하는 것이다. 즉 위와 같은 경우는 BThread가 setText("from B")라는 내용을 message에 담아 Handler를 통해 MAin..