问题描述
我试图整理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" />
有时,在 MainActivity.java
中,init()
funcation:findviewByID 也是错误的。
在开发者文档里好像没有这个需求的描述,只有这个课程: Re-using Layouts with
参考
【Android Studio】分类整理res/Layouts中的布局文件(创建子目录)
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)