我正在尝试在Button
中的文本旁边添加表情符号字符,但是由于某种原因,它仅以纯白色显示,而没有作为官方的Android表情符号字符出现。有谁知道出了什么问题以及如何解决这个问题?
注意:我不想使用任何Drawables。
预期外观
当前外观
XML布局
<?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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
课程
import android.os.Bundle
import android.widget.Button
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
my_button.text = "\u2642 Hello World"
}
}
答案 0 :(得分:1)
尝试通过附加以下内容来使用表情符号的全限定格式(表情符号样式而不是文本样式):U+FE0F VARIATION SELECTOR-16
mButton.text = "\u2642\uFE0F Hello World"
# subgroup: gender
2640 FE0F ; fully-qualified # ♀️ female sign
2640 ; unqualified # ♀ female sign
2642 FE0F ; fully-qualified # ♂️ male sign
2642 ; unqualified # ♂ male sign
2640 FE0E ; text style; # (1.1) FEMALE SIGN
2640 FE0F ; emoji style; # (1.1) FEMALE SIGN
2642 FE0E ; text style; # (1.1) MALE SIGN
2642 FE0F ; emoji style; # (1.1) MALE SIGN
答案 1 :(得分:0)
您可以设置按钮视图的样式, 就像改变视角的重力一样,
android:gravity="center"
或 android:layout_gravity =“ center” 这可以将视图设置为方面 希望对您有帮助!