Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个针对姜饼的应用程序。我需要在清单文件中更改/添加哪些属性才能使其在平板电脑上运行?
您无需添加任何内容。如果您不希望您的应用仅在平板电脑上运行,您应该根据屏幕尺寸过滤允许的设备,将以下代码添加到您的清单中:
<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xLargeScreens="true" android:requiresSmallestWidthDp="600" />