我是Android Studio的新手,安装程序后,我注意到设计布局中的“Hello World”仅在我的计算机联机时出现,我猜这是因为activity_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"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
设计布局仅在我的计算机联机时加载,脱机时设计布局为空白,脱机时我看到一堆类错误和项目错误,例如:
在项目或库中找不到布局文件androidx.constraintlayout.widget.ConstraintLayout
中引用的类
无法解析类androidx。
请告诉我如何离线下载依赖项并在activity_main.xml文件中重写http依赖项,这样我就可以离线编码了。谢谢
1条答案
按热度按时间46qrfjad1#
在
dependencies
块的build.gradle
文件中添加Bewlow依赖项XML
中使用