微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用sourceSets-res.srcDirs整理布局xml文件时<include>标签&id的错误怎么解决?

如何解决使用sourceSets-res.srcDirs整理布局xml文件时<include>标签&id的错误怎么解决?

我试图整理src/main/res/layout xml文件使布局文件清晰显示功能模块,我在res/layout文件夹中创建了一些functions文件夹,并在此移动了相应的XML文件文件夹。 我在 build.gradle(:app) 中使用以下代码

android {
//other codes
sourceSets {
    main {
        res.srcDirs =
          [
            'src/main/res/layout/exampleFunction1','src/main/res/layout/exampleFunction2/exampleFunction4','src/main/res/layout/exampleFunction3','src/main/res/layout','src/main/res'
          ]
    }
}

但是在activity_main.xml中,xml布局是错误的,因为我只使用了标签

<include layout="@layout/main_examplexml_name  <!--ERROR-->
         android:layout_height="match_parent"
         android:layout_width="match_parent" />

Xml Include Tags Error Pic

有时,在 MainActivity.java 中,init()funcation:findviewByID 也是错误的。

在开发者文档里好像没有这个需求的描述,只有这个课程: Re-using Layouts with

参考

【Android Studio】分类整理res/Layouts中的布局文件(创建子目录)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。