如何从git应用程序克隆而不会发生错误

时间:2019-05-30 06:07:57

标签: android git

我想从git克隆此应用程序

https://github.com/mdy0501/Airbnb

但是从git克隆它时有一个问题

当我克隆其布局时显示'Unresolved class'

!-这是显示错误的布局之一-

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/DeepGreen"
    tools:context="com.android.airbnb.WelcomeActivity">

在此代码下显示为红色

@color/DeepGreen
.airbnb.WelcomeActivity

即使存在.xml和类文件 显示错误(我也附上照片) enter image description here

我想知道如何解决这个问题 当我从git克隆到 如果我从android studio看到该活动,我将非常感谢

1 个答案:

答案 0 :(得分:0)

所有这些红线来自android studio,无法找到它们。确保它们都可用,并且路径如WelcomeActivity一样符合预期。确保包名称与预期的一样,并且build.gradle具有约束布局依赖性。如果您已完成这些操作,则只需同步,清理和重建您的应用即可。所有的错误都会消失。