在Android中,TextFontWeight属性用于设置文本的字体粗细。可以通过以下方式正确设置TextFontWeight属性:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textFontWeight="bold" />
TextView textView = findViewById(R.id.textView);
textView.setText("Hello World!");
textView.setTextFontWeight(Typeface.BOLD);
<style name="CustomTextStyle" parent="TextAppearance.AppCompat">
<item name="android:textFontWeight">bold</item>
</style>
然后在布局文件或Java代码中应用该样式。
总之,通过以上方法可以正确设置Android中的TextFontWeight属性,根据需要设置文本的字体粗细。