+)기록/과제
정리사항 59 - xml에 설정되어 있는 색상 및 이미지 액티비티에서 변경
AppJinny
2023. 5. 10. 09:37
*xml에 설정되어 있는 색상 및 이미지 액티비티에서 변경
if (temperatureMessage.equals("체온이 너무 높습니다")) {
binding.ivTempResultImg.setImageResource(R.drawable.thermal_red);
binding.tvTempTxt.setTextColor(ContextCompat.getColor(this, R.color.custom_pink));
binding.tvTempResultTxt.setTextColor(ContextCompat.getColor(this, R.color.custom_pink));
}
-setImageResource() 메서드를 사용하여 이미지를 변경
-setTextColor() 메서드를 호출할 때, ContextCompat.getColor() 메서드를 사용하여 컬러 값을 가져와 변경