In my application i am using "galleryview" to display some images. Everything is working fine,but if i reached the last item means the scrolling should stop,but it is scrolling to the left most edge of the screen.
My galleryview layout parameter code:
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
MarginLayoutParams mlp = (MarginLayoutParams) gal.getLayoutParams();
mlp.setMargins(-(metrics.widthPixels/2+90),mlp.topMargin,mlp.rightMargin, mlp.bottomMargin );
Please help me ..Thanks in advance.