我想在所有列表视图项目上实现同步动画以使其进入编辑模式。这里的效果与我想要的相同:http: //youtu.be/cFSRusFkI_I?t= 2m6s我的列表项布局代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="4dp" >
<CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:visibility="invisible" />
<TextView
android:id="@+id/nameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:textSize="16sp"
android:textStyle="bold" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:paddingRight="5dip"
android:src="@drawable/right_arrow" />
</RelativeLayout>
在用户单击 actionBar 中的按钮后,我想动画滑动复选框从左到右滑动,并带有适当的 textview 动画,为复选框腾出空间。我故意让复选框不可见,以测量其动画宽度。我用于动画复选框的方法(隐藏或显示,它取决于状态参数):
public void setListHandlesVisibleState(boolean state) {
AnimatorSet as = new AnimatorSet();
int childCount = mListView.getChildCount();
ArrayList<Animator> list = new ArrayList<Animator>();
for (int i = 0; i<childCount; ++i) {
CheckBox v = (CheckBox) mListView.getChildAt(i).findViewById(
R.id.checkbox);
TextView tv = (TextView) mListView.getChildAt(i).findViewById(
R.id.nameTextView);
if (state) {
list.add(ObjectAnimator.ofFloat(v, "x", -v.getWidth(),
v.getLeft()));
list.add(ObjectAnimator.ofFloat(v, "alpha", 0, 1));
list.add(ObjectAnimator.ofFloat(tv, "x", tv.getLeft(),
(float) (v.getWidth() * 0.9)));
} else {
list.add(ObjectAnimator.ofFloat(v, "x", v.getLeft(),
-v.getWidth()));
list.add(ObjectAnimator.ofFloat(v, "alpha", 1, 0));
list.add(ObjectAnimator.ofFloat(tv, "x",
(float) (v.getWidth() * 0.9), tv.getLeft()));
}
}
as.addListener(this);
as.playTogether(list);
as.setDuration(200);
as.start();
}
@Override
public void onAnimationEnd(Animator animation) {
mAdapter.notifyDataSetChanged();
}
当 listview 短于一屏(没有视图重用)时,动画看起来很完美,而且非常流畅。当列表视图较长时,似乎某些列表视图项尚未创建,因此没有动画。我尝试在适配器中创建视图缓存并使用这些视图,而不是在适配器 getView 方法中使用 convertView,并在该缓存中包含的视图上播放动画。我还注意到,所有可重用视图都是在创建列表视图时创建的(当我滚动列表视图时,转换视图总是!= null)。