android ListView 自动滚动到最底部

2016-07-07  本文已影响3574人  ThinkerHu

如何让你的ListView实现自动滚动呢? Android其实已经考虑到ListView控件的智能滚动操作。直接在Layout中写即可,注意下面的stackFromBottom以及 transcriptMode这两个属性。涉及代码如下:

< ListView android:id="listCWJ"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:stackFromBottom="true"

android:transcriptMode="alwaysScroll"

/>

notice:

stackFromBottom设置为true,表示列表内容从下面开始显示

transcriptMode设置为alwaysScroll的话,当内容满屏的时候自动滚动显示最后一条。

上一篇 下一篇

猜你喜欢

热点阅读