Android 平板电脑上的安装按钮不起作用
Android install button on tablets doesn't work
当我尝试在平板电脑上安装我的应用程序时,出现了显示 "Do you want to install this app?" 的屏幕,我只能按取消按钮,而不是安装按钮(但它看起来很正常)。我激活了来自未知来源的安装设置,并且 android 版本已经足够晚了。我的清单如下所示:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="14"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我认为 supports-screens 标签可以解决问题,但显然不能。
如果需要代码或其他文件,请告诉我。
我可以在 android 工作室模拟器中的平板电脑上安装该应用程序。没有报错,第一次遇到。
你有什么建议吗?感谢您的帮助!
我认为这与您的应用程序无关,我尝试安装的任何 apk 都遇到了这个问题。您是否安装了任何会影响屏幕的应用程序,例如 Bluelight Filter?删除那些应该可以解决问题。
当我尝试在平板电脑上安装我的应用程序时,出现了显示 "Do you want to install this app?" 的屏幕,我只能按取消按钮,而不是安装按钮(但它看起来很正常)。我激活了来自未知来源的安装设置,并且 android 版本已经足够晚了。我的清单如下所示:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="14"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我认为 supports-screens 标签可以解决问题,但显然不能。 如果需要代码或其他文件,请告诉我。 我可以在 android 工作室模拟器中的平板电脑上安装该应用程序。没有报错,第一次遇到。
你有什么建议吗?感谢您的帮助!
我认为这与您的应用程序无关,我尝试安装的任何 apk 都遇到了这个问题。您是否安装了任何会影响屏幕的应用程序,例如 Bluelight Filter?删除那些应该可以解决问题。