重新排序后动画列表视图项目

时间:2015-01-24 09:00:27

标签: android listview android-animation

我有一个使用自定义ArrayAdapter的listview。当我点击一个项目时,它会突出显示(textview会改变颜色)。我想要实现的是突出显示的行移动到列表的顶部。 我的代码看起来像这样:

private void onRowClick(....) {
    highlightRow(position);
    reorderItems();
    // animate here?
    adapter.notifyDataSetChanged(); 
    // or here?
}

我对android动画知之甚少,所以不知道列表项的确切动画在哪里。 感谢的。

0 个答案:

没有答案