TextView设置文字大小及颜色:
1.1)通过xml配置
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#FF0000"
android:textSize="18sp"/>
1.2)通过代码设置(方式一)
TextView textView = new TextView(this); textView.setTextColor(Color.RED); textView.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, 18, getResources().getDisplayMetrics())); // textView.setText(Html.fromHtml("<font color=‘#00FF00‘>TextView</font>")); // 该方式不支持设置字体大小
1.3)通过代码设(方式二,支持字体大小与颜色)
String text = "年收益率:5.88%"; SpannableString spanText = new SpannableString(text); spanText.setSpan(new ForegroundColorSpan(Color.BLACK), 0, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); spanText.setSpan(new TextAppearanceSpan(this, R.style.text_style), 5, text.length() - 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); spanText.setSpan(new ForegroundColorSpan(Color.RED), text.length() - 1, text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); mTextView.setText(spanText); Style文件: <style name="text_style"> <item name="android:textSize">30sp</item> <item name="android:textColor">@color/clr_red</item> </style>
时间: 2024-10-17 18:28:46