W/System.err: java.io.FileNotFoundException: No content provider: https://firebasestorage.googleapis.com/v0/b/app.example.com/o/items%2F1653978775982_3.jpg?alt=media&token=ad1dea81-bc33-4210-8ea0-19070304415f
W/System.err: at android.content.ContentResolver.openTypedAssetFileDescriptor(ContentResolver.java:1459)
at android.content.ContentResolver.openAssetFileDescriptor(ContentResolver.java:1310)
at android.content.ContentResolver.openInputStream(ContentResolver.java:1030)
import android.os.Parcelable;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class ParseCountry implements Parcelable{
@SerializedName("Name")
@Expose
private String name;
@SerializedName("Unicode")
@Expose
private String unicode;
@SerializedName("Dial")
@Expose
private String dial;
public final static Creator<ParseCountry> CREATOR = new Creator<ParseCountry>() {
@SuppressWarnings({
"unchecked"
})
public ParseCountry createFromParcel(android.os.Parcel in) {
return new ParseCountry(in);
}
public ParseCountry[] newArray(int size) {
return (new ParseCountry[size]);
}
};
protected ParseCountry(android.os.Parcel in) {
this.name = ((String) in.readValue((String.class.getClassLoader())));
this.unicode = ((String) in.readValue((String.class.getClassLoader())));
this.dial = ((String) in.readValue((String.class.getClassLoader())));
}
/**
* No args constructor for use in serialization
*
*/
public ParseCountry() {
}
/**
*
* @param name
* @param unicode
* @param dial
*/
public ParseCountry(String name, String unicode, String dial) {
super();
this.name = name;
this.unicode = unicode;
this.dial = dial;
}
public String getName() {
return name;
}
public String getUnicode() {
return unicode;
}
public String getDial() {
return dial;
}
public void setName(String name) {
this.name = name;
}
public void setUnicode(String unicode) {
this.unicode = unicode;
}
public void setDial(String dial) {
this.dial = dial;
}
public void writeToParcel(android.os.Parcel dest, int flags) {
dest.writeValue(name);
dest.writeValue(unicode);
dest.writeValue(dial);
}
public int describeContents() {
return 0;
}
}
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_above="@id/adview"
android:focusable="true"
android:focusableInTouchMode="true" >
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar_layout"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:backgroundTint="@color/teal"
tools:targetApi="lollipop">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="48dp"
android:layout_width="match_parent"
android:visibility="gone"
android:layout_marginTop="10dp"
android:layout_marginEnd="5dp"
android:layout_marginBottom="10dp"
android:layout_marginStart="5dp"
android:background="@drawable/url_bar_background_white"
app:layout_scrollFlags="scroll|enterAlways|snap"/>
</com.google.android.material.appbar.AppBarLayout>
<com.exemple.views.NoSwipeViewPager
android:id="@+id/webviewpager"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>