activity_my_first.xml の内容をチュートリアルの内容に置き換えるだけです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
または、main.xml という別の xml を作成します。このチュートリアルでは、推測で作成したものを既に持っていることを前提としています。
アクティビティの onCreate メソッドで確認してください
setContentView(R.layout.activity_my_first);