Can I create a strikethrough text in Android, I mean adding a special value in the TextView tag that can make this possible?
TextView
If you are using Kotlin:
your_text_view.apply { paintFlags = paintFlags or Paint.STRIKE_THRU_TEXT_FLAG text = "Striked thru text" }