mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 11:28:14 -05:00
1730177525
rose.
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?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"
|
|
android:padding="5dp"
|
|
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"
|
|
android:text="TextView"
|
|
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"
|
|
android:text="TextView"
|
|
android:textColor="@android:color/secondary_text_light"
|
|
android:textSize="15sp" />
|
|
|
|
</RelativeLayout>
|