You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="50dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="星期几:"
|
|
android:textStyle="bold"
|
|
android:textSize="18sp" />
|
|
|
|
<EditText
|
|
android:id="@+id/weekdayname1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="请输入星期几"
|
|
android:focusable="true"
|
|
android:windowSoftInputMode="stateVisible"
|
|
android:textStyle="bold"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="100dp"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text=" 节数:"
|
|
android:textStyle="bold"
|
|
android:textSize="18sp" />
|
|
|
|
<EditText
|
|
android:id="@+id/id1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="请输入第几节"
|
|
android:textStyle="bold"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_marginTop="200dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/returnback"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="取消" />
|
|
|
|
<Button
|
|
android:id="@+id/sure"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="确定" />
|
|
</LinearLayout>
|
|
</RelativeLayout> |