Unicode字符圆圈颜色

时间:2014-06-07 14:33:50

标签: java android unicode character

我正在开发Android应用程序,并且我正在使用unicode字符。

我的代码填充了一个白色圆圈:' \ u25cf'。

我希望这个圆圈为绿色和红色(也是填充的)。我怎样才能做到这一点?

当我更改Textview的颜色时,所有圆圈都会获得相同的颜色。

Using unicode character in android application

1 个答案:

答案 0 :(得分:-1)

您需要更改TextField的颜色属性。假设它是用XML定义的:

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/your_green"
    android:text="Hello"/>

假设您想以编程方式设置它:

int c = Color.parseColor("#ff0000");
mTextView.setTextColor(c);

int c = getResources().getColor(R.color.your_green);
mTextView.setTextColor(c);