1

我用 Android Studio 开发了一个应用程序,有一个非常奇怪的行为:
安装后我在所有应用程序列表中都看不到应用程序(不是图标也不是名称),但我可以在最近的应用程序和管理应用程序中看到。
我通过电子邮件将 APK 发送给自己,安装后打开选项被禁用。我检查了ic_launcher图标,它们很好。

什么会导致这种情况?有任何想法吗?

编辑:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="my.package.name"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="18" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".SplashActivity"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="http" android:host="my.package.name.host" />
            </intent-filter>
        </activity>
        <activity android:name=".MainActivity"
                  android:configChanges="orientation"/>

        <activity android:name=".LoginActivity"
                  android:windowSoftInputMode="adjustPan"
                  android:configChanges="orientation"/>
    </application>

</manifest>
4

3 回答 3

2

对我来说,在意图过滤器中有以下几行足以使 ICON 与其他应用程序一起出现在启动器中

     <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
     </intent-filter>

当您打开通过电子邮件发送或传输到手机的 apk 时,您将看到INSTALL选项,成功安装后,OPEN选项就在那里。

于 2015-02-23T13:38:37.373 回答
2

将标签放在两个意图过滤器上,像这里

     <activity android:name=".MainActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>

        <intent-filter>

            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:scheme="http" android:host="qr_3d.com"/>
            <data android:scheme="https" android:host="qr_3d.com"/>
            <data android:scheme="app" android:host="qr_3d.com"/>
        </intent-filter>
    </activity>
于 2019-03-18T12:29:21.497 回答
0

确保过滤器是

应该是 MAIN 而不是 activity_main 等。

还删除 min / max SDK 设置行...

这对我有用

于 2014-04-10T00:27:53.943 回答