forked from github/wulkanowy-mirror
51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
|
<FrameLayout 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.support.v4.widget.SwipeRefreshLayout
|
||
|
android:id="@+id/gradeSummarySwipe"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/gradeSummaryRecycler"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
</android.support.v4.widget.SwipeRefreshLayout>
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/gradeSummaryProgress"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:indeterminate="true" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/gradeSummaryEmpty"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical"
|
||
|
android:visibility="invisible">
|
||
|
|
||
|
<android.support.v7.widget.AppCompatImageView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:minWidth="100dp"
|
||
|
android:minHeight="100dp"
|
||
|
app:srcCompat="@drawable/ic_menu_main_grade_26dp"
|
||
|
app:tint="?android:attr/textColorPrimary"
|
||
|
tools:ignore="contentDescription" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/grade_no_items"
|
||
|
android:textSize="20sp" />
|
||
|
</LinearLayout>
|
||
|
</FrameLayout>
|