2017年6月8日 星期四

[Android] 讓畫面支援不同螢幕大小的手機

在AndroidManifest.xml裡加入以下語法︰

<supports-screens android: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"/>


data source: https://developer.android.com/guide/topics/manifest/supports-screens-element.html