编辑AndroidMainfest.xml文件中注册activity时,加入
<data android:scheme="http" />
时会报以下错误:Activity supporting ACTION_VIEW is not set as BROWSABLE
此时应再加入一行:
<category android:name="android.intent.category.BROWSABLE" />
把这个<activity>注册为BROWSABLE。
编辑AndroidMainfest.xml文件中注册activity时,加入
<data android:scheme="http" />
时会报以下错误:Activity supporting ACTION_VIEW is not set as BROWSABLE
此时应再加入一行:
<category android:name="android.intent.category.BROWSABLE" />
把这个<activity>注册为BROWSABLE。