Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过以下方式在 xml 中设置了一些 TextViews 文本粗体: android:textStyle="bold" 未在 xml 中设置文本并且来自代码的绑定的 textviews 显示为正确的粗体,但由 xml 设置的文本的 textviews 不显示粗体。请帮我修复这个错误。
您不能同时从 XML 和以编程方式设置文本。如果您在 textview 中设置 XML 中的文本,那么它将被设置为以编程方式设置的文本覆盖。因此,如果您想在 textview 中设置文本,您应该以编程方式设置它。