zoukankan      html  css  js  c++  java
  • Android报错:Error: Can't determine type for tag 错误:无法确定标记的类型

    报错信息:

    D:ExerciseAndroid_textAndriod_Practiceappsrcmain eslayout_findfind_dialect.xml: Error: Can't determine type for tag '<LinearLayout android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical">

    <RelativeLayout android:background="@drawable/find_game" android:id="@+id/find_game" style="@style/find_main_style">

    <TextView android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="游戏" android:textColor="@color/white" android:textSize="30sp"/>
    </RelativeLayout>

    <RelativeLayout android:background="@drawable/find_study" android:id="@+id/find_study" style="@style/find_main_style">

    <TextView android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="学习" android:textColor="@color/white" android:textSize="30sp"/>
    </RelativeLayout>

    <RelativeLayout android:background="@drawable/find_moive" android:id="@+id/find_moive" style="@style/find_main_style">

    <TextView android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="电影、视频" android:textColor="@color/white" android:textSize="30sp"/>
    </RelativeLayout>

    <RelativeLayout android:background="@drawable/find_class" android:id="@+id/find_class" style="@style/find_main_style">

    <TextView android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="课程" android:textColor="@color/white" android:textSize="30sp"/>
    </RelativeLayout>
    </LinearLayout>'

    产生原因:合并代码时,莫名奇妙的出现了一个文件夹layout_find,导致布局加载错误

    解决方法:删除该文件夹【删除前检查一下里面的文件有没有用,如果有用,则把文件放到layout文件夹下】

  • 相关阅读:
    解决"从不是创建控件的线程访问它"
    (转)Asp.net 中 Get和Post 的用法
    正则表达式30分钟入门教程 v2.3 转
    winform中,如何控制控件位置随窗体的大小改变而改变
    SpringCloudNetflix(Usage of Hystrix)
    SpringCloudNetflix(Usage of Eureka)
    分布式协调Zookeeper(分布式锁&Leader选举)
    SpringCloudNetflix(Usage of GateWay)
    分布式协调Zookeeper(手写配置中心&动态刷新)
    SpringCloudNetflix(Usage of Nacos配置中心)
  • 原文地址:https://www.cnblogs.com/hahayixiao/p/11355394.html
Copyright © 2011-2022 走看看