android - Trying to load pdf that i could annotate/gesture on, but it doesn't respond to my gestures? -


i can't show entire code, think general problem lies here:

    if (list.size() > 0 && imagelist[(int) id].isfile())      {         intent intent = new intent();         intent.setaction(intent.action_view);         uri uri = uri.fromfile(imagelist[(int) id].getabsolutefile());         intent.setdataandtype(uri, "application/pdf");         startactivity(intent);     } 

after sends me activity, i'm no longer able make gestures.

do know how keep reference gesture listener when start new activity? see else might doing wrong?


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

C# WinForm - loading screen -