This how I show the bullet list of strings (max 4 items) using the Unicode character, now I need to colour code the bullet to be red and i don't want to start the second line of the text to below the bullet point
I tried adding textView with drwableLeft but bullet not alliged to first line of the heading
android:drawablePadding="2dp"
android:drawableLeft="@drawable/ic_red_bullet"
is there any way i can add text with colored bullet point
<string name="headlines">
\n\u25CF Conversion disorder - the mysterious condition dogged by doubt and stigma \n
\n\u25CF Baseless and ludicrous: Kremlin responds to Mueller probe \n
\n\u25CF Ibrahims back in court over alleged drug and tobacco imports \n
</string>
Layout-file
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView2"
android:layout_width="356dp"
android:layout_height="wrap_content"
android:text="@string/headlines"
app:layout_constraintRight_toRightOf="parent"
tools:layout_constraintTop_creator="1"
android:textColor="@color/colorBlack"
tools:layout_constraintRight_creator="1"
android:layout_marginRight="12dp"
android:layout_marginEnd="12dp"
android:layout_marginTop="28dp"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintHorizontal_bias="1.0" />
</android.support.constraint.ConstraintLayout>