Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 !

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.