我的活动有一个以下 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) 和一些文本。问题是在加载过程中,很少有行超出屏幕。我打算启用滚动,以便用户可以向下滚动以查看那些缺失的行。但是滚动应该只限制到最后一行而不是超出。关于如何设置的任何建议?