我正在尝试在下面的代码中分配布局
<include
layout="@layout/subfolder/boxes1_8" <!--The problem is here-->
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_columnWeight="1"
/>
字符串
位于存储在子文件夹
中的xml文件中
我得到一个“无效配置'72'错误。
如何使用xml从布局文件夹中的子文件夹引用布局?有可能吗?
我在xml中尝试了这些格式。
layout="@layout/subfolder/boxes1_8"
layout="@layout/subfolder.boxes1_8"
layout="@(layout/subfolder/boxes1_8)"
型
1条答案
按热度按时间ntjbwcob1#
正如Jason所指出的,这是一个功能请求:Make subfolders for android layout files possible #2741尚未实现。你可以继续这个线程:https://github.com/xamarin/xamarin-android/issues/2741。
作为erikpowa提供的替代解决方案,您可以尝试编辑csproj文件以包含如下布局:
字符串