2019-09-18 22:29:09 +02:00
|
|
|
<?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"
|
|
|
|
tools:context=".HomeFragment">
|
|
|
|
|
|
|
|
<pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoIndicator
|
|
|
|
android:id="@+id/refreshLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2019-09-28 14:37:05 +02:00
|
|
|
tools:context=".ui.modules.home.HomeFragment">
|
2019-09-18 22:29:09 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/cardInsertPoint"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/nextSync"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
tools:text="TextView" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/mobidziennikMessagesSwitch"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
|
|
android:text="Zmień moduł wiadomości"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/composeButton"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:text="Compose" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/testButton"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
2019-10-01 21:27:09 +02:00
|
|
|
android:text="Start Service"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/test2"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
2019-10-26 15:13:03 +02:00
|
|
|
android:text="Sync profile - view home"
|
2019-10-01 21:27:09 +02:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/test3"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
2019-10-26 15:13:03 +02:00
|
|
|
android:text="Sync profile - view messages sent"
|
2019-10-01 21:27:09 +02:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/test4"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
2019-10-26 15:13:03 +02:00
|
|
|
android:text="Sync profile - view grades"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/test5"
|
|
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:text="Mark all announcements as read"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoIndicator>
|
2019-09-28 14:37:05 +02:00
|
|
|
</layout>
|