红叉显示如图:
一、我的解决方式,已验证有效...
通过android studio下,点击 tools ->Android->sync project with gradles files.解决了这个问题。
二、网上还搜了下其他情况的红叉问题:
(1)可能是setting.gradle设置问题:
需要修改为:
(2)在AndroidManifest.xml中Main入口的activity没有
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
解决方式按下图添加代码: