当我开始新文档时,如何删除多个“此处不允许属性错误”?

我是 Android 开发新手,我正在尝试制作一张简单的生日快乐卡。每当我启动应用程序并创建一个新项目时,我都会在 Activity_Main.xml 文件中收到一些错误,这些错误使我无法看到预览。


我尝试过重新安装 Java、重新安装 Android Studio、检查代理、将布局从约束更改为相对以及打开和关闭 XML 文件。


<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"

   xmlns:tools="schemas.android.com/tools"

   android:layout_height="match_parent"

   android:layout_width="match_parent"

   tools:context=".MainActivity">

     <TextView

        android:layout_height="wrap_content"

        android:layout_width="wrap_content"

        android:text="Happy Birthday YOURFRIENDHERE" />

</RelativeLayout>

给出的代码只是在手机屏幕上显示文本,但我一直收到所有属性的错误,Android:layout、Tools:context 和 TextView 说它们是不允许的。即使我创建一个新项目并且没有编辑任何内容,我仍然会在自动填充的代码中遇到错误。


智慧大石
浏览 117回答 3
3回答

qq_笑_17

尝试这个<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"&nbsp; &nbsp; xmlns:tools="http://schemas.android.com/tools"&nbsp; &nbsp; android:layout_height="match_parent"&nbsp; &nbsp; android:layout_width="match_parent"&nbsp; &nbsp; tools:context=".MainActivity">&nbsp; &nbsp; <TextView&nbsp; &nbsp; &nbsp; &nbsp; android:layout_height="wrap_content"&nbsp; &nbsp; &nbsp; &nbsp; android:layout_width="wrap_content"&nbsp; &nbsp; &nbsp; &nbsp; android:text="Happy Birthday YOURFRIENDHERE" /></RelativeLayout>

绝地无双

我认为这是因为你的 android studio 的版本不是最新的,因为我认为当你发现你阻止通过你的互联网从互联网下载 gradle 资源时,谷歌希望我们使用最新版本。

jeck猫

这是一个 VPN 问题,无法从 Google 接收某些文件,因此无法访问必要的文件。现在一切都按预期工作!
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java