I have a textview where I concat two strings, I wan the first string alone to be in different color.
tvMobileNo.text = "Mobile Number : " + sharedPreferences.getString("mobile_number", "")
tvEmail.text = "Email : " + sharedPreferences.getString("email", "")
tvAddress.text = "Address : " + sharedPreferences.getString("address", "")
In this I only want the first string(""Mobile number", "Email","Address") to be of different color.