Qudratullox
Qudratullox

Reputation: 11

Error Caused by org.xmlpull.v1.XmlPullParserException

Caused by org.xmlpull.v1.XmlPullParserException (Android 4.4.4 & 4.4.2) Binary XML file line #1: invalid drawable tag vector mobile.push.PushAdapter.onCreateViewHolder (PushAdapter.java:68)

It is my Holder

    private class UserViewHolder extends RecyclerView.ViewHolder {
    TextView title;
    TextView time;
    TextView short_text;
    TextView body;
    View view1;
    ExpandableLayout expand;

    public UserViewHolder(View view) {
        super(view);
        view1 = view.findViewById(R.id.container);
        title = view.findViewById(R.id.title);
        time = view.findViewById(R.id.time);
        short_text = view.findViewById(R.id.short_text);
        body = view.findViewById(R.id.body);
        expand = view.findViewById(R.id.expand);
    }
}

line : 68 ->

//onCreateViewHolder
        View view = LayoutInflater.from(activity).inflate(R.layout.item_push, parent, false);
        return new UserViewHolder(view);

XML item_push.xml

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <TextView
            android:id="@+id/short_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <TextView
            android:id="@+id/time"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="2018-02-01 04:54" />

        <net.cachapa.expandablelayout.ExpandableLayout
            android:id="@+id/expand"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:el_duration="1000"
            app:el_expanded="false"
            app:el_parallax="0.5">

            <TextView
                android:id="@+id/body"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
        </net.cachapa.expandablelayout.ExpandableLayout>

What should I do? Can't test on Android 4.4.2

Upvotes: 1

Views: 416

Answers (1)

clzd0792
clzd0792

Reputation: 66

Add a statement to your build.gradle file of app module:

android {
      defaultConfig {
        vectorDrawables.useSupportLibrary = true
      }
    }

Check this

Upvotes: 0

Related Questions