mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-01-20 22:06:45 -06:00
64 lines
2.6 KiB
XML
64 lines
2.6 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"
|
||
|
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"
|
||
|
tools:context=".fragments.HomeFragment">
|
||
|
|
||
|
<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"
|
||
|
android:text="Test Librus"
|
||
|
android:visibility="gone"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
</pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoIndicator>
|
||
|
</layout>
|