Sha256: c90d7f284fab98aaf9d96e654bd874d8b2780b84c44f0fa0f31e2a340f10308c
Contents?: true
Size: 1.65 KB
Versions: 6
Compression:
Stored size: 1.65 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?android:colorBackground"> <ImageView android:id="@+id/imageView" android:layout_width="match_parent" android:layout_height="50dp" android:layout_marginBottom="10dp" app:layout_constraintBottom_toTopOf="@+id/error_message" app:srcCompat="@drawable/ic_warning" /> <com.google.android.material.textview.MaterialTextView android:id="@+id/error_message" style="?textAppearanceDisplaySmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="Error loading page" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias=".45" tools:layout_editor_absoluteX="24dp" /> <com.google.android.material.textview.MaterialTextView style="?textAppearanceTitleMedium" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center_horizontal" android:text="Pull-to-refresh to try again" app:layout_constraintTop_toBottomOf="@id/error_message" tools:layout_editor_absoluteX="24dp" /> </androidx.constraintlayout.widget.ConstraintLayout>
Version data entries
6 entries across 3 versions & 1 rubygems