kotlin Android Studio中的离线布局依赖项

w41d8nur  于 2023-03-13  发布在  Kotlin
关注(0)|答案(1)|浏览(156)

我是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依赖项,这样我就可以离线编码了。谢谢

46qrfjad

46qrfjad1#

dependencies块的build.gradle文件中添加Bewlow依赖项

implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  • 喜欢下面

  • 并在XML中使用

相关问题