-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[시뮬레이션] 건강 관리 #55
Comments
🐶 강아지 건강 관리 목록에 들어가는 Data(1일)
😶 강아지 상태 관리 Data❓강아지 기분 관리는 어떤 데이터를 기준으로 판단?❗ 대안1 : 사료 섭취, 산책, 간식 섭취 등등.. 강아지의 기분을 결정하는 데이터들을 계산하여 판단..(사실상 불가능)
❓그래프의 용도가 무엇인가요?❗ 지난 7일간 강아지 데이터(산책 횟수, 산책 거리, 배변 횟수, 사료 섭취 횟수 등등.....) 기록을 볼 수 있다. 📈 그래프에 들어가는 값(7일) / 분류
|
🚨ISSUE
오류 발생 원인안드로이드 스튜디오 버전이 높은 경우(Arctic Fox 이후), settings.gradle에 밑의 코드 추가 maven { url 'https://jitpack.io' } 참고자료 |
내가 구현하고자 했던 것하나의 Alert Func를 사용해서 Alert창을 띄우려고 함. why?왜냐면 yes를 눌렀을 때 연결되는 이벤트 핸들러에서 Alert 창을 구분할 수 있는 방법이 없어서 binding.medicine1.setOnClickListener{
// alert 창
alertFunc("복용약 먹이기","강아지에게 약을 먹이겠습니까?")
}
// 연고 바르기
binding.medicine2.setOnClickListener{
// alert 창
alertFunc("연고 바르기", "강아지에게 연고를 바르겠습니까?")
}
val alertEvent = object : DialogInterface.OnClickListener{
override fun onClick(p0: DialogInterface?, p1: Int) {
Log.d("mobileApp", "$p0, $p1")
// text 값 변경
// data 값 변경, 반영
}
}
// alert
private fun alertFunc(title: String, content: String){
AlertDialog.Builder(this).run {
setTitle(title)
setIcon(R.drawable.maltese_p1)
setMessage(content)
setPositiveButton("YES", alertEvent)
setNegativeButton("NO", null)
show()
}.setCanceledOnTouchOutside(false)
} |
📈 Chart / Graph 참고 자료
여러가지 Chart 소스코드 - GitHub
The text was updated successfully, but these errors were encountered: