冰淇淋三明治中的吐司通知是否有任何问题?在我的应用程序中,通知在所有其他版本上看起来很好。然而,在冰淇淋三明治中,它非常小巧。起初我认为它可能是我的自定义主题,但在禁用它后,我看到了相同的结果。我正在像其他人一样展示Toast:
Toast.makeText(MyActivity.this, "Hello, World!", Toast.LENGTH_SHORT).show();
我的主题:
<resources>
<style name="mytheme" parent="@android:style/Theme.Light.NoTitleBar" >
<item name="android:editTextStyle">@style/blue_edittext</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@color/White</item>
</style>
</resources>
有什么想法吗?谢谢!
答案 0 :(得分:9)
根据this问题/答案:
添加
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"/>
到我的清单,解决了我的问题...