<?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:orientation="vertical"
|
android:padding="16dp">
|
|
|
|
<TextView
|
android:id="@+id/tvTitle"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="18sp"
|
android:textStyle="bold"/>
|
|
<TextView
|
android:id="@+id/tvDescription"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="14sp"
|
android:layout_marginTop="4dp"/>
|
|
<TextView
|
android:id="@+id/overTimeMsg"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textSize="14sp" />
|
</LinearLayout>
|