This is a post for the http://groups.google.com/group/android-developers forum. R/
On Wed, Apr 29, 2009 at 3:20 AM, android frashman <[email protected]> wrote: > > how to add a effect being developed by opengles to the application of > pictures? > if (slideShow) { > setMode(MODE_SLIDESHOW); > loadNextImage(mCurrentPosition, 0, true); > } > as i know ,the function loadNextImage(mCurrentPosition, 0, true) is > used for slide_show.so i prepare to replace the function with the > following : > if (slideShow) { > setMode(MODE_SLIDESHOW); > Intent i = new Intent(this, GLActivity.class); > if (i != null) > this.startActivity(i); > } > then in the Activity of GLActivity,i draw a cube and Bind texture of > image on the cube> > i am glad to receive your message! > Thanks! > > best wishes! > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
