В Android на TextView
, как я могу сделать текст ▶ Play
, используя стиль, который я ему даю. Проблема с текстом ▶
. На эмуляторе он отображается нормально, однако при тестировании на устройстве он выглядит синим с белым текстом.
Следующий код:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestingActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="▶ Play"/>
</androidx.constraintlayout.widget.ConstraintLayout>
Производит:
И
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestingActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_red_light"
android:textColor="@android:color/black"
android:text="▶ Play"/>
</androidx.constraintlayout.widget.ConstraintLayout>
Производит: