退格符号'⌫'显示在运行Android API版本28的设备上,而不显示在运行API版本15的模拟器上。我正在使用以下代码。请帮助
<Button
android:id="@+id/backspace"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#F5F5F5"
android:text="\u232b"
android:textSize="35sp"
app:layout_column="0"
app:layout_gravity="fill"
app:layout_row="0"
app:layout_rowWeight="1" />
[似乎旧的Android版本没有支持此符号的字体,因此您必须为此按钮使用受支持的font-family,您可以检查受支持的字体here并使用下载的字体,您可以检查here的操作方式,不要忘了旧api的this部分,但此处的最小[[api-level是16
并像这样使用<Button
android:id="@+id/backspace"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#F5F5F5"
android:text="\u232b"
android:fontFamily="@font/myfont" //your downloaded font family name
android:textSize="35sp"
/>
如果您需要支持api 15,则可以使用val typeface = resources.getFont(R.font.myfont)
button.typeface = typeface