123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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="match_parent"
- android:id="@+id/rootView"
- android:background="@color/purple_f5"
- tools:context="com.zhong.inspection.ui.ClassEndingActivity">
- <include
- android:id="@+id/tool_bar"
- layout="@layout/title_toolbar" />
- <ScrollView
- android:id="@+id/scrollView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/tool_bar">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:orientation="vertical"
- android:paddingLeft="10dp"
- android:paddingTop="10dp"
- android:paddingRight="10dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="上课照片"
- android:textColor="@color/black" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_recycler_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:text="课程总结"
- android:textColor="@color/black" />
- <EditText
- android:id="@+id/ed_course_sm"
- android:layout_width="match_parent"
- android:layout_height="70dp"
- android:layout_marginTop="10dp"
- android:background="@null"
- android:ellipsize="end"
- android:focusable="true"
- android:textSize="14sp"
- android:padding="2dp"
- android:focusableInTouchMode="true"
- android:gravity="start"
- android:maxLength="50" />
- </LinearLayout>
- </ScrollView>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_alignParentBottom="true">
- <Button
- android:id="@+id/but_cancel"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="取 消" />
- <Button
- android:id="@+id/but_affirm"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="确 定" />
- </LinearLayout>
- </RelativeLayout>
|