|
@@ -6,10 +6,10 @@
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
android:orientation="vertical"
|
|
android:orientation="vertical"
|
|
|
|
|
+ android:overScrollMode="never"
|
|
|
android:paddingHorizontal="100px"
|
|
android:paddingHorizontal="100px"
|
|
|
android:paddingTop="100px"
|
|
android:paddingTop="100px"
|
|
|
android:scrollbars="none"
|
|
android:scrollbars="none"
|
|
|
- android:overScrollMode="never"
|
|
|
|
|
tools:context=".presentation.PresentationActivity">
|
|
tools:context=".presentation.PresentationActivity">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
@@ -115,15 +115,50 @@
|
|
|
app:mode="select"
|
|
app:mode="select"
|
|
|
app:name="@string/presentation_person_safety" />
|
|
app:name="@string/presentation_person_safety" />
|
|
|
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="20px"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="@dimen/selectable_input_width"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="20px"
|
|
|
|
|
+ android:text="@string/start_time"
|
|
|
|
|
+ android:textColor="@color/main_color" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_start_time"
|
|
|
|
|
+ android:layout_width="400px"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="20px"
|
|
|
|
|
+ android:background="@drawable/selectable_input_text_bg" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="@dimen/selectable_input_width"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="20px"
|
|
|
|
|
+ android:text="@string/end_time"
|
|
|
|
|
+ android:textColor="@color/main_color" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_end_time"
|
|
|
|
|
+ android:layout_width="400px"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="20px"
|
|
|
|
|
+ android:background="@drawable/selectable_input_text_bg" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
<Button
|
|
<Button
|
|
|
android:id="@+id/confirm"
|
|
android:id="@+id/confirm"
|
|
|
android:layout_width="200dp"
|
|
android:layout_width="200dp"
|
|
|
android:layout_height="50dp"
|
|
android:layout_height="50dp"
|
|
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
|
|
+ android:layout_margin="5dp"
|
|
|
android:minWidth="0dp"
|
|
android:minWidth="0dp"
|
|
|
android:minHeight="0dp"
|
|
android:minHeight="0dp"
|
|
|
android:text="确定"
|
|
android:text="确定"
|
|
|
- android:textSize="10sp"
|
|
|
|
|
- android:layout_margin="5dp"
|
|
|
|
|
- android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
+ android:textSize="10sp" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
</androidx.core.widget.NestedScrollView>
|