เค้าโครง <layout> ในเค้าโครงไม่มีการประกาศในโฟลเดอร์เค้าโครงพื้นฐาน [ข้อผิดพลาด]
หลังจากย้ายไปใช้ Android Studio 3.2, API 28 ฉันได้รับข้อผิดพลาดต่อไปนี้ในรูปแบบแอปของฉัน: โครงร่างในโครงร่างไม่มีการประกาศในโฟลเดอร์โครงร่างพื้นฐาน ซึ่งอาจทำให้เกิดข้อขัดข้องเมื่อมีการสอบถามทรัพยากรในการกำหนดค่าที่ไม่ตรงกับคุณสมบัตินี้ หนึ่งในเค้าโครงที่ฉันได้รับข้อผิดพลาดนี้คือ: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@null" > <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top|center_horizontal" android:adjustViewBounds="true" android:contentDescription="@string/hello_world" android:src="@drawable/loading_top" /> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom|center_horizontal" android:adjustViewBounds="true" android:contentDescription="@string/hello_world" android:src="@drawable/loading_bottom" /> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:contentDescription="@string/hello_world" android:background="@color/white" android:layout_marginBottom="5dp" android:paddingTop="10dp" android:paddingBottom="10dp" …