एंड्रॉइड स्टूडियो 3.2, एपीआई 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"
android:src="@drawable/loading_logo" />
<ImageView
android:id="@+id/loading"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="center|center_vertical"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:contentDescription="@string/hello_world"
android:scaleType="fitXY"
android:src="@null" />
</FrameLayout>
</LinearLayout>
मुझे पहली LinearLayout की पहली पंक्ति पर त्रुटि मिलती है।
क्या किसी को पता है कि इस त्रुटि को कैसे हल किया जाए?
धन्यवाद
अद्यतन: मेरे प्रश्न का उत्तर दिया कि मेरे लिए क्या समस्या है