mirror of
https://github.com/sismics/docs.git
synced 2025-04-24 20:36:30 +02:00
67 lines
2.2 KiB
XML
67 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<EditText
|
|
android:id="@+id/titleEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:padding="16dp"
|
|
android:textSize="24sp"
|
|
android:hint="@string/title"/>
|
|
|
|
<EditText
|
|
android:id="@+id/descriptionEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textMultiLine"
|
|
android:layout_margin="8dp"
|
|
android:padding="16dp"
|
|
android:hint="@string/description"
|
|
android:textSize="18sp"
|
|
android:lines="2"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:text="@string/creation_date"
|
|
android:textColor="#9f9f9f"
|
|
android:fontFamily="sans-serif"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:textSize="18sp"
|
|
android:padding="16dp"/>
|
|
|
|
<com.sismics.docs.ui.view.DatePickerView
|
|
android:id="@+id/dateEditText"
|
|
style="@android:style/Widget.DeviceDefault.Light.Spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:textSize="18sp"
|
|
android:padding="16dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<Spinner
|
|
android:id="@+id/languageSpinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:padding="16dp"/>
|
|
|
|
<com.sismics.docs.ui.view.TagsCompleteTextView
|
|
android:id="@+id/tagsEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="18sp"
|
|
android:hint="@string/add_tags"
|
|
android:layout_margin="8dp"/>
|
|
</LinearLayout> |