'android studio JAVA - How do you make text bold [duplicate]

Im totally new to android studio so please go easy on me.

Within the JAVA Class A line of text I want certain parts to be made BOLD and italic. I know how to do new line which is \n.

 data = findViewById(R.id.fetcheddata);
***data.setText("Please confirm you are experiencing a problem with your: \n\n " +object.symptom_description1  + " \n  \n And having an issue with your: \n\n"+object.symptom_description2);***

from this part of the code, I want object.symptom_description1 and object.symptom_description2 to be BOLD how would I do this? Thank you



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source