Toast 文本不适合(溢出)
Toast text not fit (overflow)
我的吐司有问题,如您所见,HERE 文字不合适。你知道为什么会出现这个问题吗?
在 Android 5.0 toasts 看起来正常,但在 4.3 中不正常。
我的style.xml
<style name="_SelectorParent" parent="Theme.AppCompat.Light.NoActionBar">
</style>
<style name="_mainParent" parent="@style/_SelectorParent">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionModeOverlay">false</item>
<item name="android:fitsSystemWindows">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowBackground">@color/white</item>
</style>
我在堆栈上找到了解决方案,您必须将 android:fitsSystemWindows
更改为 false
。此处解释:Simple Android toasts not aligning properly
我的吐司有问题,如您所见,HERE 文字不合适。你知道为什么会出现这个问题吗? 在 Android 5.0 toasts 看起来正常,但在 4.3 中不正常。
我的style.xml
<style name="_SelectorParent" parent="Theme.AppCompat.Light.NoActionBar">
</style>
<style name="_mainParent" parent="@style/_SelectorParent">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionModeOverlay">false</item>
<item name="android:fitsSystemWindows">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowBackground">@color/white</item>
</style>
我在堆栈上找到了解决方案,您必须将 android:fitsSystemWindows
更改为 false
。此处解释:Simple Android toasts not aligning properly