i'm facing a bit of difficulty right now. II don't know how to make a specific text on TextView becamebecome BOLD.
its like this
txtResult.setText(id+" "+name);
txtResult.setText(id+" "+name); I want the output to be like this = 1111 neil:
1111 neil
"id"id and "name"name are variablevariables that iI have retrieveretrieved the value from database, and I want to make the idid to bold, but only the idid so the namename will not affected, I have no idea how to do this.
pardon me, i just recently started to learn android