| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context="com.xzjmyk.pm.activity.ui.erp.activity.oa.OA_AlarmaActivity">
- <RelativeLayout
- android:id="@+id/top"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="@color/text_black">
- <TextView
- android:id="@+id/oa_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:clickable="true"
- android:drawableLeft="@drawable/back"
- android:text="返回"
- android:textColor="@color/white"
- android:textSize="20sp" />
- <TextView
- android:id="@+id/oa_date_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:clickable="true"
- android:text="签到提醒"
- android:textColor="@color/white"
- android:textSize="20sp" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/item_height"
- android:layout_margin="2dp"
- android:background="@drawable/oa_signin_tv_bg"
- android:padding="8dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:text="考勤提醒"
- android:textSize="@dimen/text_main" />
- <com.xzjmyk.pm.activity.ui.erp.view.SwitchView
- android:id="@+id/cb_task_reply"
- android:layout_width="50dp"
- android:layout_height="35dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/item_height"
- android:layout_margin="2dp"
- android:background="@drawable/oa_signin_tv_bg"
- android:padding="8dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:text="上班时间提醒"
- android:textSize="@dimen/text_main" />
- <ImageView
- android:id="@+id/image_alar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="5dp"
- android:src="@drawable/alar" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginRight="15dp"
- android:layout_toLeftOf="@+id/image_alar"
- android:text="08 : 20"
- android:textSize="@dimen/text_main" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/item_height"
- android:layout_margin="2dp"
- android:background="@drawable/oa_signin_tv_bg"
- android:padding="8dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:text="下班时间提醒"
- android:textSize="@dimen/text_main" />
- <ImageView
- android:id="@+id/image_ualar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="5dp"
- android:src="@drawable/alar" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginRight="15dp"
- android:layout_toLeftOf="@+id/image_ualar"
- android:text="17 : 50"
- android:textSize="@dimen/text_main" />
- </RelativeLayout>
- </LinearLayout>
|