如何在我的xml文件中实现此设计?

时间:2019-02-17 06:49:58

标签: android android-xml

如何在xml中实现此设计,请提供帮助。我在此附件中描述了我想要的一切:

Attachment

1 个答案:

答案 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);