mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-03-31 05:54:04 +02:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2020-4-13.
|
|
-->
|
|
|
|
<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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<com.mikepenz.iconics.view.IconicsImageView
|
|
android:id="@+id/imageView2"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_marginTop="32dp"
|
|
app:iiv_color="@color/colorPrimary"
|
|
app:iiv_icon="cmd-login"
|
|
app:iiv_size="32dp"
|
|
tools:srcCompat="@android:drawable/stat_sys_phone_call_forward" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:text="@string/login_progress_title"
|
|
android:textSize="24sp" />
|
|
|
|
<ProgressBar
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="8dp"
|
|
android:indeterminate="true" />
|
|
</LinearLayout>
|
|
</layout>
|