Android网址自定义方案剂量工作

时间:2015-08-07 19:06:00

标签: android

我阅读了有关此内容的所有帖子,但我认为所有代码都是正确的(非常简单),这些链接似乎无法点击" Manager:// xxxx" ,在邮件中,在qr中,在whatsappp中......发生了什么事?

我只尝试

<data android:scheme="CoC" />

但是在whatsapp中只能使用http链接。为什么!

 <activity
        android:theme="@style/AppThemeFullscreen"
        android:configChanges="orientation|keyboardHidden|screenSize"
        android:label="@string/app_name"
        android:exported="true"
        android:launchMode="singleTask"
        android:name=".ALoginConnect">

        <intent-filter>
             <data android:scheme="CoC" android:host="*" android:pathPattern=".*" />
             <action   android:name="android.intent.action.VIEW"/>
             <category android:name="android.intent.category.DEFAULT"/>
             <category android:name="android.intent.category.BROWSABLE"/>
        </intent-filter>

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

    </activity>

0 个答案:

没有答案