If you use AppCompatTextView
( or from API 28
onward ) you can use the combination of those 2 attributes to remove the spacing on the first line:
XML
android:firstBaselineToTopHeight="0dp"
android:includeFontPadding="false"
Kotlin
text.firstBaselineToTopHeight = 0
text.includeFontPadding = false