I have just done some code for Gallary and now its working fine.I have followed this Link for that http://developer.android.com/resources/tutorials/views/hello-gallery.html. But my concept is still not clear.I have used there stylable, what is this?And one more thing, Is it possible to change gallary displaying mode(I mean its default mode is L-R or R-L can we change it Top-Bottom or Bottom-Top).
TypedArray attr = mContext
.obtainStyledAttributes(R.styleable.HelloGallery);
mGalleryItemBackground = attr.getResourceId(
R.styleable.HelloGallery_android_galleryItemBackground, 0);
attr.recycle();
Jay, you can’t change the default behavior of the Gallery in Android.
If still you wants to make gallery works top and bottom moving you need to customized the gallery specifically for your application.