[Compose] Image

devel_liz·2024년 11월 26일
0

Compose

목록 보기
10/20

painter 설정하기

    Column {
        Image(
            painter = painterResource(id = R.drawable.jaemin),
            contentDescription = "nct 재민")
    }

imageVector 설정하기

    Column {
        Image(painter = painterResource(id = R.drawable.jaemin), contentDescription = "nct 재민")
        Image(imageVector = Icons.Filled.Send, contentDescription = "전송")
    }

bitmap 설정하기

  • bitmap으로 받는 type이 있다만 알아두고 이번 글에서는 적용하지 않겠습니다(이유는 다음과 같습니다)
    • 일반적으로 비트맵을 설정하는 경우가 흔치 않기 때문
    • 비트맵을 다루기 위해서는 순수한 Composable 함수 내에서 진행할 수 없고 Context가 있는 Activity등에서 가지고 온 다음 주입을 해야 하기 때문
profile
Android zizon

0개의 댓글

관련 채용 정보