Android - URL方案

时间:2015-05-13 12:11:46

标签: android url-scheme

只是想知道为什么这对我不起作用:

<activity android:name=".activities.MainDrawerActivity"
        android:screenOrientation="portrait"
        android:exported="true"
        android:theme="@style/Theme.Sherlock.Light"
    android:windowSoftInputMode="adjustNothing">
        <intent-filter>
            <data android:scheme="myapp" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
    </activity>

当我打开浏览器并输入myapp:// test时没有任何反应。我错过了什么吗?

0 个答案:

没有答案