如何修复 colors.xml 文件中的错误?

How can I fix errors in my colors.xml file?

我是 Android 编程和 运行 版本 3.6.3 的新手。我的构建失败:错误 1; XML 文档必须以同一实体开始和结束。

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="androidx.constraintlayout.widget"> //This one is errorTagged with "Element manifest must be declaired."

    <uses-sdk android:minSdkVersion="9" //This one is tagged with "Tag start is not closed" but when I close it with '/>', it changes to 'Unexpected ending.'```
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
    <color name="colorPrimary">#008577</color>
    <color name="colorPrimaryDark">#ff0000</color>
    <color name="colorAccent">#00ff00</color>
    <color name="mtrl_textinput_default_box_stroke_color" tools:override="true">#000</color>
</resources>