<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/fragment_supervisory_bottom_attendance_cell_relative_layout"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
xmlns:fresco="http://schemas.android.com/apk/res-auto"
|
>
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
android:id="@+id/fragment_home_bottom_attendance_cell_photo"
|
android:layout_width="@dimen/w122dp"
|
android:layout_height="@dimen/h127dp"
|
fresco:roundedCornerRadius="@dimen/w5dp"
|
android:layout_alignParentBottom="true"
|
android:scaleType="centerCrop"
|
android:paddingTop="@dimen/h15dp"
|
android:paddingRight="@dimen/w5dp"
|
android:paddingLeft="@dimen/w5dp"
|
/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/h20dp"
|
android:background="#40000000"
|
android:layout_alignParentBottom="true"
|
android:layout_marginLeft="@dimen/w2dp"
|
android:layout_marginRight="@dimen/w2dp"
|
android:layout_marginBottom="@dimen/w2dp"
|
>
|
|
<TextView
|
android:id="@+id/fragment_home_bottom_attendance_cell_name"
|
android:layout_width="@dimen/view_size_0"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:text=""
|
android:textSize="@dimen/w12dp"
|
android:gravity="center"
|
android:textColor="@android:color/white"/>
|
<View
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:background="@android:color/white"/>
|
<TextView
|
android:id="@+id/fragment_home_bottom_attendance_cell_status"
|
android:layout_width="@dimen/view_size_0"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:text="签到"
|
android:textSize="@dimen/w12dp"
|
android:gravity="center"
|
android:textColor="@android:color/white"
|
android:background="#00000000"
|
/>
|
</LinearLayout>
|
|
</RelativeLayout>
|