本文介绍了在Galaxy Nexus的面包大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在我的应用程序使用的祝酒词,规模非常非常小。但是,当另一个应用程序显示举杯,大小是正常的(如高级任务杀手,或SMS)。

When I use toasts in my app, the size is very very small. But when another app displays a toast, the size is normal (like Advanced Task Killer, or SMS).

我有什么做的就是正常大小的祝酒词?

What do I have to do to get normally-sized toasts?

我有一个Galaxy Nexus的ICS = 4.0.1,和我的应用程序正在使用SDK API级别7(的Andr​​oid 2.1 +)。

I have a Galaxy Nexus ICS=4.0.1, and my app is using SDK API level 7 (android 2.1+).

推荐答案

感谢您! (X1000)

Thank you ! (x1000)

添加

    <supports-screens android:resizeable="true"
                  android:smallScreens="true"
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:anyDensity="true"/>

我的表现,解决我的问题...

to my manifest, solved my problem...

这篇关于在Galaxy Nexus的面包大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:29