<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingBottom="4dp"
        android:paddingLeft="6dp"
        android:paddingRight="6dp" >

        <TextView
            android:id="@android:id/text1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="2dp"
            android:textSize="@dimen/text_size_large_main" />

        <TextView
            android:id="@android:id/text2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="2dp"
            android:textSize="@dimen/text_size_medium_main" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="4dp" >

            <ImageView
                android:id="@+id/bar_ok"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:contentDescription="@string/image_dummy"
                android:src="@drawable/bar_ok" />

            <ImageView
                android:id="@+id/bar_ng"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:contentDescription="@string/image_dummy"
                android:src="@drawable/bar_ng" />

            <ImageView
                android:id="@+id/bar_zero"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:contentDescription="@string/image_dummy"
                android:src="@drawable/bar_zero" />
        </LinearLayout>
    </LinearLayout>

    <ImageView
        android:id="@+id/handle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginRight="4dp"
        android:contentDescription="@string/image_dummy"
        android:padding="8dp"
        android:src="@drawable/btn_ud" />

</FrameLayout>