我从this链接获得了心脏和钻石字符的Unicode,我很难让它们在Android TextView中显示为红色。令人惊讶的是,相同的代码会改变空心和钻石的颜色,但不会改变实心的颜色。 mycodes如下:
<TextView
android:textColor="@android:color/holo_red_dark"
android:id="@+id/testText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:textColor="@android:color/holo_red_dark"
android:id="@+id/testText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:textColor="@android:color/holo_red_dark"
android:id="@+id/testText3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:textColor="@android:color/holo_red_dark"
android:id="@+id/testText4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
//内部活动
TextView tv1=(TextView)findViewById(R.id.testText1);
TextView tv2=(TextView)findViewById(R.id.testText2);
TextView tv3=(TextView)findViewById(R.id.testText3);
TextView tv4=(TextView)findViewById(R.id.testText4);
// tv.setText(Html.fromHtml("\u2665"));
tv1.setTextColor(Color.RED);
tv1.setText(Html.fromHtml("<font color='red'>\u2665</font>"));
tv2.setTextColor(Color.RED);
tv2.setText(Html.fromHtml("<font color='red'>\u2666</font>"));
tv3.setTextColor(Color.RED);
tv3.setText(Html.fromHtml("<font color='red'>\u2661</font>"));
tv4.setTextColor(Color.RED);
tv4.setText(Html.fromHtml("<font color='red'>\u2662</font>"));