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
- Proxy
- 인프런
- 스프링 핵심 기능
- Thymeleaf
- java
- pointcut
- Greedy
- http
- SpringBoot
- 그리디
- QueryDSL
- db
- Servlet
- 알고리즘
- springdatajpa
- transaction
- spring
- Spring Boot
- AOP
- 김영한
- 백준
- JDBC
- 자바
- 스프링
- JPQL
- 스프링 핵심 원리
- kotlin
- Android
- Exception
- jpa
Archives
- Today
- Total
목록dialog (1)
개발자되기 프로젝트
[Android] Dialog띄우기
1. Custom Dialog 띄울 layout 준비 2. 사용 방법 val mDialogView = LayoutInflater.from(this).inflate(R.layout.custom_dialog, null) val mBuilder = AlertDialog.Builder(this) .setView(mDialogView) .setTitle("운동 메모 dialog") } 3. 날짜 선택하는 dialog 만들기 //날짜 선택하는 dialog, dateSelectBtn이 눌렸을 경우 dateSelectBtn?.setOnClickListener { val today = GregorianCalendar() val year: Int = today.get(Calendar.YEAR) val month: Int ..
인프런/[인프런] 앱 8개를 만들면서 배우는 안드로이드 코틀린
2022. 3. 22. 23:32