blob: 512cc73773f4e0ca13f732acd3292f99639f88af [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:ignore="HardcodedText">
<TextView
android:id="@+id/first"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="First" />
<Button
android:id="newname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/first"
android:text="Second" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/newname"
android:labelFor="@id/newname"
android:text="Third" />
</RelativeLayout>