android 自動スクロール 1

xml

<?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="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello_world"
android:id="@+id/textView" />

<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:layout_marginTop="100dp"/>

</RelativeLayout>