forked from github/szkolny
135 lines
5.3 KiB
XML
135 lines
5.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layout 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">
|
||
|
|
||
|
<pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoIndicator
|
||
|
android:id="@+id/refreshLayout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:layout_marginEnd="8dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/noticesSummaryTitle"
|
||
|
style="@style/Widget.AppCompat.Spinner"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:fontFamily="sans-serif-medium"
|
||
|
android:text="@string/notices_summary_title_loading_format"
|
||
|
android:textSize="20sp" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/notices_praises_title" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/noticesPraisesCount"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:textStyle="bold"
|
||
|
tools:text="0" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/notices_warnings_title" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/noticesWarningsCount"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:textStyle="bold"
|
||
|
tools:text="0" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/notices_other_title" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/noticesOtherCount"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:textStyle="bold"
|
||
|
tools:text="0" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/noticesView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginTop="8dp"
|
||
|
tools:listitem="@layout/row_notices_item" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/noticesNoData"
|
||
|
android:layout_width="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
android:gravity="center"
|
||
|
android:layout_height="match_parent"
|
||
|
android:visibility="gone"
|
||
|
tools:visibility="visible">
|
||
|
|
||
|
<com.mikepenz.iconics.view.IconicsImageView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="92dp"
|
||
|
app:iiv_icon="szf-message-off"
|
||
|
app:iiv_color="?android:textColorPrimary"
|
||
|
app:iiv_size="92dp"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:fontFamily="sans-serif-medium"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/notices_no_data"
|
||
|
android:textSize="18sp"
|
||
|
android:textStyle="italic" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</FrameLayout>
|
||
|
</LinearLayout>
|
||
|
</pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoIndicator>
|
||
|
</layout>
|