为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

智慧大石 2023-06-21 13:14:31
我是 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 说它们是不允许的。即使我创建一个新项目并且没有编辑任何内容,我仍然会在自动填充的代码中遇到错误。
查看完整描述

3 回答

?
qq_笑_17

TA贡献1818条经验 获得超7个赞

尝试这个


<?xml version="1.0" encoding="utf-8"?>

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

    xmlns:tools="http://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>


查看完整回答
反对 回复 2023-06-21
?
绝地无双

TA贡献1946条经验 获得超4个赞

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



查看完整回答
反对 回复 2023-06-21
?
jeck猫

TA贡献1909条经验 获得超7个赞

这是一个 VPN 问题,无法从 Google 接收某些文件,因此无法访问必要的文件。现在一切都按预期工作!



查看完整回答
反对 回复 2023-06-21
  • 3 回答
  • 0 关注
  • 116 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信