I would like to add a border independently around each letter of my Textview like this example :
Actually I have a basic TextView in purple , but I would like to add yellow border as you can see on this image.
Here is my actual XML of my Textview which is the same as the picture but WITHOUT yellow border around letters :
<TextView
android:id="@+id/Coins"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="9dp"
android:layout_marginStart="150dp"
android:layout_marginTop="116dp"
android:fontFamily="@font/montserratbold"
android:textColor="#a51ebf"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="@+id/box"
app:layout_constraintEnd_toEndOf="@+id/box"
app:layout_constraintHorizontal_bias="0.55"
app:layout_constraintStart_toStartOf="@+id/box"
app:layout_constraintTop_toTopOf="@+id/box"
app:layout_constraintVertical_bias="0.25" />
I tried many solutions but nothing work especially , let me know if you have something. Thanks !
