我正在开发一个应用程序,当用户添加记录时,记录会膨胀到 ScrollView 的底部。我想问一下如何设置视图,以便一旦用户单击添加按钮,滚动视图将自动“滑动”并显示底部添加的最新记录?非常感谢!!
是否要添加到 layout.xml 文件中?xml编码如下:
<TableRow android:id="@+id/tableRow3"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
android:background="@color/light_yellow">
<ScrollView android:id="@+id/SlotScrollView"
android:layout_width="match_parent"
android:layout_span="8"
android:padding="0dp">
<TableLayout android:id="@+id/SlotTableLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp"
android:stretchColumns="*"></TableLayout>
</ScrollView>
</TableRow>