如何在xml中实现此设计,请提供帮助。我在此附件中描述了我想要的一切:
答案 0 :(得分:0)
您可以通过在TextView
中重叠ConstraintLayout
并在第二TextView
中添加与第一个字母的数量相匹配的空格来实现此目的。
TextView
并用不同的方式设置字符串的第一部分。
作为参考,请检查developer's website上HTML的字符串资源样式
例如:
textView.setText(Html.fromHtml("<b>Title</b>. The rest of your description"));
评论后更新:
<string name="first_item"><b>Title.</b> Rest of the description!</string>
然后以编程方式:
String text = getString(R.string.first_item);
Spanned styledText = Html.fromHtml(text, FROM_HTML_MODE_LEGACY);