我的祝酒词有问题,因为你可以看到HERE文字不合适。你知道为什么会出现这个问题吗? 在Android 5.0上,Toast看起来很正常但在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>
答案 0 :(得分:1)
我在堆栈上找到了解决方案,您必须将android:fitsSystemWindows
更改为false
。在此解释:Simple Android toasts not aligning properly