私のアクティビティには次のxmlがあります。
<LinearLayout 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"
android:orientation="vertical"
tools:context=".Activity1" >
<RelativeLayout
android:id="@+id/titleStoryRelativeLayout"
android:layout_weight="@string/titleWeight"
android:layout_width="fill_parent"
android:layout_height="0dip">
<TextView
android:id="@+id/titleStory"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/contentTextViewLayout"
android:layout_weight="@string/contentTextViewWeight"
android:layout_width="fill_parent"
android:layout_height="0dip">
<TextView
android:id="@+id/textViewStory1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/footerStoryRelativeLayout"
android:layout_weight="@string/footerWeight"
android:layout_width="fill_parent"
android:layout_height="0dip>
<Button
android:id="@+id/buttonPrevious"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:onClick="loadPrevious"
android:text="@string/stringButtonPrevious"/>
<Button
android:id="@+id/buttonNext"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:onClick="loadNext"
android:text="@string/stringButtonNext"/>
ここでは、Textview (@+id/textViewStory1) をコードからテキストとともに動的にロードしています。問題は、ロード中に画面を超える行がほとんどないことです。ユーザーが下にスクロールして欠落している行を表示できるように、スクロールを有効にする予定です。ただし、スクロールは最後の行までに制限し、それを超えてはなりません。どうすればそれを設定できますか?