4

can anyone explain me how to recreate the scrolling effect in android like below iPhone app and this is not automatic scroll..

enter image description here

i have tried the following :

myview.setOnScrollListener(new OnScrollListener() {

        @Override
        public void onScrollStateChanged(AbsListView arg0, int scrollState) {

        }

        @Override
        public void onScroll(AbsListView listViews, int firstVisibleItem,
                int visibleItemCount, int totalItemCount) {
            final View view = getViewByPosition(firstVisibleItem);
}

I have no idea how it's made...

Karthi
  • 756
  • 4
  • 16
  • With some modifications in this library..You can achieve that https://github.com/jpardogo/ListBuddies – kalyan pvs Mar 17 '14 at 06:18
  • thanks @kalyanpvs but you shared the parallel list view example and i want the above effect on the list or view when scrolling can you please give any idea or example.. – Karthi Mar 17 '14 at 06:25
  • may be this will suitable for you ..http://stackoverflow.com/questions/13952357/infinite-auto-scroll-listview-with-scroll-speed-controlled – kalyan pvs Mar 17 '14 at 06:26
  • http://stackoverflow.com/questions/20250470/ultravisual-iphone-app-like-uiview-or-uitableview-scroll can you please read this – Karthi Mar 17 '14 at 06:33
  • Did you ever this this completed? – Learn2Code Mar 16 '19 at 19:21

0 Answers0