Skip to content

Commit

Permalink
[chore] #139 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunjium committed Apr 5, 2024
1 parent 2cb494a commit f74637b
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
package sopt.motivoo.presentation.exercise

import android.content.Context
import android.graphics.Color
import android.graphics.PorterDuff
import android.graphics.PorterDuffColorFilter
import android.view.View
import android.widget.FrameLayout
import androidx.core.content.ContextCompat
import androidx.navigation.findNavController
import androidx.recyclerview.widget.RecyclerView
import coil.load
import coil.transform.RoundedCornersTransformation
import com.skydoves.balloon.ArrowPositionRules
import com.skydoves.balloon.Balloon
import com.skydoves.balloon.BalloonAnimation
import com.skydoves.balloon.createBalloon
import sopt.motivoo.R
import sopt.motivoo.databinding.ItemExerciseBinding
import sopt.motivoo.databinding.ItemExerciseTodayBinding
Expand Down Expand Up @@ -156,11 +150,10 @@ class ExerciseNoticeViewHolder(private val binding: ItemExerciseTodayBinding) :
.build()

binding.ivExerciseTodayIconQuestion.setOnClickListener {
balloon.showAlignBottom(binding.ivExerciseTodayIconQuestion,0,-15)
balloon.showAlignBottom(binding.ivExerciseTodayIconQuestion, 0, -15)
}
}


private fun setCharacterIcon(userType: String, opponentUserType: String) {
if (userType == CHILD) binding.ivExerciseTodayIconLeft.setImageResource(R.drawable.ic_child_left) else binding.ivExerciseTodayIconLeft.setImageResource(
R.drawable.ic_parent_left
Expand Down

0 comments on commit f74637b

Please sign in to comment.