Quando eu estou inserindo a ScrollView no projeto, ele não esta rolando a tela, e não aparece nenhum código de erro. Pode ser problema no emulador? Segue o código:
<ScrollView android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_formulario"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.giovanni.agenda2.FormularioActivity"
tools:showIn="@layout/activity_formulario">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Nome" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Endereço" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Telefone" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Site" />
<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:max="10"
android:numStars="5"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Salvar"/>
</LinearLayout>
</ScrollView>