mirror of
https://github.com/sismics/docs.git
synced 2025-04-16 17:00:37 +02:00
63 lines
2.1 KiB
XML
63 lines
2.1 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:hint="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="Description"
|
|
android:lines="2"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:text="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="16sp"
|
|
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:text="15/11/2014"
|
|
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"/>
|
|
|
|
<MultiAutoCompleteTextView
|
|
android:id="@+id/tagsEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"/>
|
|
</LinearLayout> |