android开发

TextView控件

修改字体颜色的三种方法:

1、SpannableStringBuilder style=new SpannableStringBuilder();
      style.setSpan(new ForegroundColorSpan(color.RED), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

2、TextView tvTextView=(TextView)findViewById(R.id.tvTextView);
      tvTextView.setText(Html.fromHtml(""));

3、         android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#009900"
        android:text="@string/hello_world" />

你可能感兴趣的:(Android)