mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-03-15 14:23:59 +01:00
103 lines
4.7 KiB
XML
103 lines
4.7 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
~ Copyright (c) Kuba Szczodrzyński 2019-11-12.
|
||
|
-->
|
||
|
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
<LinearLayout
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:focusable="true"
|
||
|
android:focusableInTouchMode="true"
|
||
|
android:padding="24dp">
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:hint="@string/dialog_event_manual_date">
|
||
|
<pl.szczodrzynski.edziennik.utils.TextInputDropDown
|
||
|
android:id="@+id/dateDropdown"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
tools:text="13 listopada"/>
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:hint="@string/dialog_event_manual_time">
|
||
|
<pl.szczodrzynski.edziennik.utils.TextInputDropDown
|
||
|
android:id="@+id/timeDropdown"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
tools:text="8:10 - język polski"/>
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:hint="@string/dialog_event_manual_team">
|
||
|
<pl.szczodrzynski.edziennik.utils.TextInputDropDown
|
||
|
android:id="@+id/teamDropdown"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
tools:text="2b3T"/>
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:hint="@string/dialog_event_manual_subject">
|
||
|
<pl.szczodrzynski.edziennik.utils.TextInputDropDown
|
||
|
android:id="@+id/subjectDropdown"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
tools:text="2b3T"/>
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:hint="@string/dialog_event_manual_teacher">
|
||
|
<pl.szczodrzynski.edziennik.utils.TextInputDropDown
|
||
|
android:id="@+id/teacherDropdown"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
tools:text="2b3T"/>
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:hint="@string/dialog_event_manual_topic">
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
android:id="@+id/topic"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:inputType="textLongMessage|textMultiLine|textImeMultiLine"
|
||
|
android:minLines="2"
|
||
|
tools:text="2b3T" />
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</layout>
|