只是想知道为什么这对我不起作用:
<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时没有任何反应。我错过了什么吗?