0

我为手机和平板电脑开发了一个 Android 应用程序。它一直在两个模拟器中运行。当我在平板电脑模拟器中运行时,小部件的大小正在填满屏幕。我应该怎么做才能解决这个冲突?

4

2 回答 2

0

res/layout您可以在(用于手柄)和res/layout-large(用于平板电脑)中为手柄和平板电脑制作两种不同的布局。布局文件名必须相同。您可以在此处找到更多解释和其他方法:

http://developer.android.com/guide/practices/screens_support.html

于 2012-09-27T13:56:52.970 回答
0

我认为您最好在拥有所有信息的开发者网站上查看它。这是 http://developer.android.com/guide/practices/screens_support.html

<supports-screens 
    android:resizeable="true" 
    android:smallScreens="true" 
    android:normalScreens="true" 
    android:largeScreens="true" 
    android:anyDensity="true"/>
于 2012-09-27T13:56:57.850 回答