美文网首页
android ListView 自动滚动到最底部

android ListView 自动滚动到最底部

作者: ThinkerHu | 来源:发表于2016-07-07 02:32 被阅读3574次

如何让你的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的话,当内容满屏的时候自动滚动显示最后一条。

相关文章

网友评论

      本文标题:android ListView 自动滚动到最底部

      本文链接:https://www.haomeiwen.com/subject/keoqjttx.html