android,android-fragments,android-viewpager,android-windowmanager,android-photos
I think this is because you are adding your ViewPager directly via the WindowManager. Doing so means that it won't be part of the normal Activity view hierarchy (i.e. a child of the decor view). Activity.findViewById (which traverses views using the decor view as the root) won't be able to...
I did the same thing before. 1.I use intent to call the other camera app, and inside onActivityResult, I get back the URI and process it as I need. We do resize the pic, but I also keep the original ratio, and rotate it based on exif data. Hopefully this...