我已经开发了一个 android 应用程序并准备好用于 3.7 英寸 hdpi 手机。但我希望该应用程序可以在所有类型的设备平板电脑和手机上运行。我以前开发的应用程序仅适用于固定尺寸。现在我想知道我应该为哪些尺寸设置不同的布局。(我想要最常用的尺寸)?请帮忙。
问问题
95 次
1 回答
3
把所有的layouts
和android:layout_width="fill_Parent"/"wrap_content"
(android:layout_height="fill_Parent"/"wrap_content"
当然,根据你的要求)。不要对任何layout
参数进行硬编码,并将以下标记放在Manifest
文件中:
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"
android:resizeable="true" android:anyDensity="true" />
于 2013-02-08T05:30:37.783 回答