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 ファイルから別の xml ファイルにさまざまな要素をインポートする方法に関するチュートリアルはありますか?