我是第一次安装Android Studio,在这些YouTube教程视频中,该应用程序运行良好。但是,由于某些原因,在我的Android Studio中无法加载预览,它显示以下消息
"Preview is unable until after a successful project sync."
我尝试禁用脱机模式,从父目录中删除gradle文件夹,禁用防火墙,设置代理(它显示Connection successful
,我使用了代理以太网)以及服务器上所有其他解决方案论坛,甚至重新安装Studio,但对我来说效果不佳。
我无法再使用Studio。我尝试在Windows 10上实际使用Android Studio 3.5。
在content_main.xml中输入的代码是这个
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
“构建”视图显示以下错误。
ERROR: Could not GET
'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.pom'. Received status code 407 from server: Proxy Authentication Required
Enable Gradle 'offline mode' and sync project
当我单击给定的链接时,将下载一个.pom文件。
当我点击Enable Gradle 'offline mode' and sync project
出现以下错误。
ERROR: No cached version of com.android.tools.build:gradle:3.5.0 available for offline mode.
Disable Gradle 'offline mode' and sync project
总而言之,这就是问题。 This is a screenshot
构建gradle(app)如下
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}