123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/ic_bgm_ji_hua"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:gravity="center"
- android:text="通 知"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/tvInfo"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:gravity="center"
- android:padding="5dp"
- android:text="课程名称,上课日期+上课时间,请按时参加不要缺席"
- android:textColor="@color/black"
- android:textSize="16sp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="16dp"
- android:paddingBottom="10dp">
- <Button
- android:id="@+id/but_cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:background="@drawable/ic_bgm_edit_user"
- android:text="取 消" />
- <Button
- android:id="@+id/but_affirm"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:background="@drawable/ic_bgm_inven"
- android:text="确 定" />
- </LinearLayout>
- </LinearLayout>
|