How to concatenate /append 2 strings in kotlin?
Answer #1 100 %You can use string templates:
"${context.getString(R.string.mymessage)} ${it.myinfo.codeid}"
You can use string templates:
"${context.getString(R.string.mymessage)} ${it.myinfo.codeid}"