Ошибка надувания класса только с P30Pro, почему? - PullRequest
0 голосов
/ 18 марта 2020

Я пытаюсь создать приложение Android, и оно работает со всеми телефонами, а не с P30Pro. У меня есть эта ошибка:

android .view.InflateException: двоичная XML строка файла № 24: двоичная XML строка файла № 24: ошибка раздувания класса

Эта ошибка появляется в createView:

 @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    return inflater.inflate(R.layout.fragment_infected, container, false); //here
}

И это мой xml фрагмент_инфицированный:

<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
android:layout_height="wrap_content"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

 <FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="it.pathcoro.coronow.Infected"
android:paddingLeft="3dp"
android:paddingRight="3dp">

   <androidx.cardview.widget.CardView
    android:layout_width="408dp"
    android:layout_height="match_parent"
    android:layout_gravity="center_horizontal|center_vertical"
    android:layout_marginBottom="-15dp"
    app:cardCornerRadius="24dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="30dp"
        android:background="@drawable/bg"
        android:minWidth="25px"
        android:orientation="vertical">


        <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
            android:id="@+id/idSwipe"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context="it.pathcoro.coronow.News"
            tools:ignore="MergeRootFrame">
        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

        <TextView
            android:id="@+id/textInfetti"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:text="INFETTI:"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="#FFFFFF"
            android:textSize="28dp"
            android:textStyle="bold" />
  </LinearLayout>
        </ScrollView>
        </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
    </LinearLayout>
</androidx.cardview.widget.CardView>
</FrameLayout>

Как я могу устранить эту ошибку? Tnks для ответов.

РЕДАКТИРОВАТЬ:

Я заметил, что эта ошибка возникает для любого макета, который я вставляю в createview. Итак, xml бесполезен.

...