当前位置: 代码迷 >> 综合 >> AndroidManifest.xml文件报Activity supporting ACTION_VIEW is not set as BROWSABLE的解决方案
  详细解决方案

AndroidManifest.xml文件报Activity supporting ACTION_VIEW is not set as BROWSABLE的解决方案

热度:87   发布时间:2024-02-19 11:34:53.0

我们在AndroidManifest.xml文件中注册activity时,在加入<data>标签时会报以下错误:Activity supporting ACTION_VIEW is not set as BROWSABLE,如图:

一堆红线,但是不影响项目的发布和运行,但是对于强迫症的人是不能仍受的。

解决方案:

这个错误的意思是:支持ACTION_VIEW的活动未设置为BROWSABLE

1、删除(这个方法不可行):

<action android:name="android.intent.action.VIEW"/>

2、添加以下代码,把此activity设置为BROWSABLE

<category android:name="android.intent.category.BROWSABLE"/>

  相关解决方案