<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp">
<TextView
android:id="@+id/step_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1/10"
android:textSize="20sp" />
<ImageView
android:id="@+id/voice_image"
android:layout_width="30dp"
android:layout_marginTop="20dp"
android:layout_height="30dp"
android:layout_below="@+id/step_text"
android:src="@drawable/ic_voice_normal" />
<TextView
android:id="@+id/right_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:drawablePadding="15dp"
android:drawableRight="@drawable/ic_success_face"
android:text="0"
android:textSize="20sp" />
<TextView
android:id="@+id/wrong_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/right_text"
android:drawablePadding="15dp"
android:layout_marginTop="10dp"
android:drawableRight="@drawable/ic_fail_face"
android:text="0"
android:textSize="20sp" />
<TextView
android:id="@+id/question_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:textColor="@color/fff"
android:contentDescription="5 + 3 ="
android:textSize="80sp" />
<TextView
android:id="@+id/answer_text"
android:layout_width="160dp"
android:layout_height="wrap_content"
android:layout_below="@+id/question_text"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:background="@drawable/shape_gray_border"
android:gravity="center"
android:inputType="number"
android:maxLength="6"
android:maxLines="1"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:text=""
android:textColor="@color/orange"
android:textSize="40sp" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/question_text">
<ImageView
android:id="@+id/result_image"
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_centerHorizontal="true"
android:layout_gravity="center" />
</FrameLayout>
</RelativeLayout>