Android XML中小写的view 会直接让APP崩溃

有知道原因的可以告诉我啊,谢谢。

Android XML中小写的view 会直接让APP崩溃,有意思

Code

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".view.mainPage.homePage.handover.HandoverFragment">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:padding="20dp">

        
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <view
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

        </LinearLayout>
    </LinearLayout>


</FrameLayout>