android - How to force picture select library in landscape? -
i can use following way open picture select library, there way force in landscape?
intent = (new intent("android.intent.action.pick")).settype("image/*"); fragment.startactivityforresult(intent, 9162);
in manifest set orientation of activity landscape? instance
<activity android:name="android.intent.action.pick" android:screenorientation="landscape" ...