일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JDBC
- jpa
- 인프런
- 스프링 핵심 원리
- java
- Android
- kotlin
- pointcut
- QueryDSL
- transaction
- Proxy
- 그리디
- Greedy
- 백준
- Exception
- springdatajpa
- 자바
- SpringBoot
- 스프링 핵심 기능
- 알고리즘
- AOP
- Servlet
- Spring Boot
- spring
- 김영한
- 스프링
- JPQL
- db
- http
- Thymeleaf
- Today
- Total
목록ListView (2)
개발자되기 프로젝트
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..
ListView를 사용하는 경우 흐름은 다음과 같다. 한 Activity에서 dataLisst를 Adapter에 전달 Adapter는 받은 dataList에서 하나씩 꺼내서 각 item마다 view를 만들어 ListView에 전달. 최종적으로 ListView에는 dataLIst를 기반으로 만들어진 view가 list의 형대로 보여짐. 1. Adapter 생성 - Adapter의 역할: 데이터를 받아와서 (list)view생성 - 표시할 데이터 생성자 주입 - BaseAdapter() 상속 - 메서드들은 자동으로 호출됨. 개별로 호출할 필요 없음. class ListViewAdapter(val list: MutableList) : BaseAdapter(){ override fun getCount(): In..