Android中的滚动并不顺畅,而且卡在中间

时间:2011-04-27 10:19:53

标签: android

我正在使用以下代码在列表中显示...它滚动但不顺畅;就像在iPhone上一样。

this.ListAdapter = new IndMessageAdapter(this,
    R.layout.individualmessage_list,
    IndividualMessage.CombinedMessages);

setListAdapter(this.ListAdapter);

1 个答案:

答案 0 :(得分:1)

可能是你没有重新使用适配器中的视图。请将此作为适配器重用视图的示例。

http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html