31 lines
895 B
XML
31 lines
895 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_event"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<DatePicker
|
|
android:id="@+id/datePicker"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:calendarViewShown="false" />
|
|
|
|
<EditText
|
|
android:id="@+id/editText_event"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ems="10"
|
|
android:gravity="start|top"
|
|
android:hint="事件"
|
|
android:inputType="textMultiLine" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |