簡體   English   中英

我的Android應用未顯示在應用抽屜中

[英]My Android App is not showing on the App Drawer

我有一個活動的應用程序:

<activity android:name=".MainActivity"
    android:label="@string/app_name"
    android:screenOrientation="landscape"
    android:launchMode="singleTask"
    android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
        <category android:name="com.google.intent.category.CARDBOARD" />

        <data android:scheme="myscheme" android:host="action1"/>
        <data android:scheme="myscheme" android:host="action2"/>
        <data android:scheme="myscheme" android:host="action3"/>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
    </intent-filter>
    <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>

我需要它來響應myscheme://網址,並且它在這方面起作用。 不幸的是,它沒有顯示在我的應用程序抽屜中。 如果我刪除android:scheme行,則它會顯示在應用程序抽屜中,但是顯然,它不再響應myscheme://網址。

如何解決此活動,使其既顯示在應用程序抽屜中,又響應自定義網址?

嘗試將intent-filter分為兩部分:

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

</intent-filter>
<intent-filter>
    <category android:name="com.google.intent.category.CARDBOARD" />
        <data android:scheme="myscheme" android:host="action1"/>
        <data android:scheme="myscheme" android:host="action2"/>
        <data android:scheme="myscheme" android:host="action3"/>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
    </intent-filter>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM