I am displaying a list from database i want the labels to be bold.
Cursor cursor = GetAllData();
StringBuilder stringBuilder =new StringBuilder();
while(cursor.moveToNext()){
stringBuilder.append("Id :" + cursor.getString(0)+ " | " +"Name :"+
cursor.getString(1)+" | "+"Address :" + cursor.getString(2)+" | "+"Phone :" +
cursor.getString(3)+"\n"+"--------------------------------------------------"+"\n");
}
textView.setText(stringBuilder);
That is Id,Name,Address must be bolded what to add to make it bolder.