i want to bring a ChildView of Gallery to Screen without changing the order of the gallery.
i use the code below but it does not work. is there anything wrong?
any help would be very very appriciated~
mGallery = (Gallery) findViewById(R.id.gallery);
mGallery.setAdapter(new ImageAdapter(this));
View mView = new View(this);
mView = mGallery.getChildAt(10);
mGallery.bringChildToFront(mView);
mGallery.setOnItemClickListener(this);
mGallery.setOnItemSelectedListener([b]this[/b]);


