如何在Android Studio中向后兼容⌫符号?

问题描述 投票:1回答:1

退格符号'⌫'显示在运行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 android-studio backwards-compatibility
1个回答
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

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.