天天看點

android開發:讓程式适應不同螢幕大小

對androidmanifest.xml進行配置即可:

<supports-screens android:resizeable="true" />      

附:

<supports-screensandroid:resizeable=["true"|"false"]
                  android:smallScreens=["true" | "false"]
                  android:normalScreens=["true" | "false"]
                  android:largeScreens=["true" | "false"]
                  android:xlargeScreens=["true" | "false"]
                  android:anyDensity=["true" | "false"]
                  android:requiresSmallestWidthDp="integer"
                  android:compatibleWidthLimitDp="integer"
                  android:largestWidthLimitDp="integer"/>      

還有螢幕自适應的參考:http://www.cnblogs.com/mybkn/articles/2535519.html

轉載于:https://www.cnblogs.com/wuchao/archive/2013/03/20/2971186.html