09:00 ~ 10:00 : 오늘 계획 확인하기 + 팀 회의
10:00 ~ 12:00
13:00 ~ 18:00
19:00 ~ 20:00 : 알고리즘 문제 풀기
20:00 ~ 21:00 : 마무리 회고 진행
[안드로이드] ImageView round corner, radius 주기/ 이미지뷰 코너 둥글게 하기
//layout
<ImageView
android:id="@+id/userImageComment"
android:background="@drawable/image_shape"
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
//drawable resource file - image_shape
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/white"></solid>
<corners android:radius="30dp"/>
</shape>
//activity
val userImageComment = findViewById<ImageView>(R.id.userImageComment)
userImageComment.clipToOutline = true
https://school.programmers.co.kr/learn/courses/30/lessons/12937
//짝수와 홀수
class Solution {
fun solution(num: Int): String {
return if(num % 2 == 0) "Even" else "Odd"
}
}
팀 프로젝트 : SNS앱 만들기 : 디테일 페이지
WIL 작성하기