2014-04-13 23:32:39 -04:00
|
|
|
<?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:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgIsFound"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
2014-04-26 10:28:58 -04:00
|
|
|
android:padding="5dp"
|
2014-04-13 23:32:39 -04:00
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_toRightOf="@+id/imgIsFound"
|
2014-04-29 14:52:40 -04:00
|
|
|
android:text="@string/default_text"
|
2014-04-13 23:32:39 -04:00
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtRiddle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@+id/txtName"
|
|
|
|
android:layout_below="@+id/txtName"
|
2014-04-29 14:52:40 -04:00
|
|
|
android:text="@string/default_text"
|
2014-04-13 23:32:39 -04:00
|
|
|
android:textColor="@android:color/secondary_text_light"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|