how would I do an animation that would onLongItem click remove that view by sliding it out to right (I can do this)
listView.setOnItemLongClickListener(new OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> arg0, View view, int position, long arg3) {
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.slide_out_right);
animation.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
// TODO Auto-generated method stub
}
@Override
public void onAnimationRepeat(Animation animation) {
// TODO Auto-generated method stub
}
@Override
public void onAnimationEnd(Animation animation) {
resolver.notifyChange(ArticleProvider.CONTENT_URI, null);
Toast.makeText(MainActivity.this, getString(R.string.toast_article_hidden), Toast.LENGTH_SHORT).show();
}
});
view.startAnimation(animation);
return true;
}
but then slide the whole rest of the list down like in the task manager that comes with ICS ?
Thanks !