Nthily
02/02/2024, 5:47 AMAnnotatedString
have a separate textStyle for localized strings? Suppose I have <string name="replying_to_title">Replying to %s</string>
and I want to set a separate textStyle for %s
, what should I do? 🤔Zoltan Demant
02/02/2024, 5:53 AM%s
first, then replying_to_title.indexOf(%s)
and use that as startIndexephemient
02/02/2024, 6:10 AM