Quando utilizo o celular para testar minha tarefa a barra azul aparece mais já nela vem o campo endereço, "Nome" e o titulo da barra "Agenda" não aparece, o que devo ter feito de errado?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText android:hint="Nome"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<EditText android:hint="Endereço"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText android:hint="Telefone"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText android:hint="Site"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:max="10"
android:layout_gravity="center"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Salvar"/>
</LinearLayout>