我一直在这里寻找其他答案,以试图找出我的问题,但是,我收到一个错误,没有实际添加任何代码。我打开一个新项目并添加了“水平滚动视图”,并立即出现XML错误,甚至自己都没有进行任何更改,然后删除了代码,尽管程序只有10行,但仍然在第11行出现了错误。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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"
</RelativeLayout>
以某种方式,当这行长10行时,我在第11行出现错误。我仍然不明白为什么一旦添加诸如“水平滚动视图”或某些文本之类的内容后,它立即决定显示错误。
答案 0 :(得分:0)
相对布局缺少>
。它应该如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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">