mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-04-11 02:32:27 +02:00
31 lines
1011 B
XML
31 lines
1011 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2020-3-30.
|
|
-->
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="Fragment 1" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button"
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:checkable="true"
|
|
android:text="Enable/disable Swipe to refresh"/>
|
|
</LinearLayout>
|
|
</layout>
|