我有一个 main.xml 文件和一个 cell_shape.xml 文件。
在我的 main.XML 中我有这个
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:weightSum="100" >
<include
android:id="tables"
layout="@layout/cell_shape" />
在我的 cell_shape.XML 我有这个
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tables"
android:shape= "rectangle" >
<solid android:color="#000"/>
<stroke android:width="1dp" android:color="#ff9"/>
</shape>
我有这个错误
Exception raised during rendering: You must specify a valid layout
reference. The layout ID @layout/cell_shape is not valid. Couldn't
resolve resource @layout/cell_shape Exception details are logged in
Window > Show View > Error Log
如果它是我的 main.xml,我不明白如何正确导入
是否有关于如何将不同元素从一个 xml 文件导入到另一个的教程?