我开发了一款只能在手机上运行的 android 应用程序。但它也可以在 Tab 上运行我在 Manifest 文件中进行了如下更改-
<supports-screens
android:anyDensity="true"
android:largeScreens="false"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="false" />
但它不起作用。使用仅在手机上而不是在 android 选项卡上运行的代码设置 android 应用程序的方法是什么。