<?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="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/v0"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="4dp" >

        <RatingBar
            android:id="@+id/ratingBarLevel"
            style="?android:attr/ratingBarStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:numStars="7"
            android:stepSize="1" />

        <TextView
            android:id="@+id/textViewID"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="right" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/v1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="4dp"
        android:paddingRight="4dp" >

        <TextView
            android:id="@+id/textViewQusetion"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="4dp"
            android:background="@drawable/border00"
            android:lines="1"
            android:textSize="@dimen/text_size_large_sub" />

        <TextView
            android:id="@+id/textViewAnswer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="4dp"
            android:background="@drawable/border00"
            android:lines="2"
            android:textSize="@dimen/text_size_medium_sub" />

        <TextView
            android:id="@+id/textViewData"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="4dp"
            android:background="@drawable/border00"
            android:lines="3"
            android:textSize="@dimen/text_size_medium_sub" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="6dp" >

        <ImageView
            android:id="@+id/imageViewFlag"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/item_flag"
            android:padding="6dp"
            android:src="@drawable/icon_flag" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewEdit"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/item_edit"
            android:padding="6dp"
            android:src="@drawable/icon_edit" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewSound"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/item_sound"
            android:padding="6dp"
            android:src="@drawable/icon_sound" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewLink"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/item_link"
            android:padding="6dp"
            android:src="@drawable/icon_link" >
        </ImageView>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/layoutBefore"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="4dp" >

        <Button
            android:id="@+id/buttonCheck"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/button"
            android:drawableLeft="@drawable/btn_check"
            android:padding="10dp"
            android:text="@string/label_check"
            android:textAppearance="?android:attr/textAppearanceLarge" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/layoutAfter"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="4dp" >

        <Button
            android:id="@+id/buttonNG"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:background="@drawable/button"
            android:drawableLeft="@drawable/btn_ng"
            android:padding="10dp"
            android:text="@string/label_ng"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Button
            android:id="@+id/buttonOK"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4dp"
            android:layout_weight="0.5"
            android:background="@drawable/button"
            android:drawableLeft="@drawable/btn_ok"
            android:padding="10dp"
            android:text="@string/label_ok"
            android:textAppearance="?android:attr/textAppearanceLarge" />
    </LinearLayout>

    <TextView
        android:id="@+id/empty"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="@string/msg_nodata_sub"
        android:visibility="gone" />

</LinearLayout>