Newer
Older
Meterage / app / src / main / res / layout / include_detection_top_layout.xml
<?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="horizontal">

    <LinearLayout style="@style/taskTopLayoutStyle">

        <ImageView
            android:layout_width="@dimen/homePngSize"
            android:layout_height="@dimen/homePngSize"
            android:src="@mipmap/todo_task" />

        <TextView
            android:id="@+id/awaitDetectionCountView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/dp_5"
            android:fontFamily="sans-serif-black"
            android:singleLine="true"
            android:text="0"
            android:textColor="@color/black"
            android:textSize="@dimen/sp_18" />
    </LinearLayout>

    <LinearLayout style="@style/taskTopLayoutStyle">

        <ImageView
            android:layout_width="@dimen/homePngSize"
            android:layout_height="@dimen/homePngSize"
            android:src="@mipmap/under_task" />

        <TextView
            android:id="@+id/underDetectionCountView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/dp_5"
            android:fontFamily="sans-serif-black"
            android:singleLine="true"
            android:text="0"
            android:textColor="@color/black"
            android:textSize="@dimen/sp_18" />
    </LinearLayout>

    <LinearLayout style="@style/taskTopLayoutStyle">

        <ImageView
            android:layout_width="@dimen/homePngSize"
            android:layout_height="@dimen/homePngSize"
            android:src="@mipmap/completed_task" />

        <TextView
            android:id="@+id/completedDetectionCountView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/dp_5"
            android:fontFamily="sans-serif-black"
            android:singleLine="true"
            android:text="0"
            android:textColor="@color/black"
            android:textSize="@dimen/sp_18" />
    </LinearLayout>
</LinearLayout>