我是 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>
绝地无双
TA贡献1946条经验 获得超4个赞
我认为这是因为你的 android studio 的版本不是最新的,因为我认为当你发现你阻止通过你的互联网从互联网下载 gradle 资源时,谷歌希望我们使用最新版本。
添加回答
举报
0/150
提交
取消