I am working on Activity1
given landscape in the manifest.
Now, I want to launch web browser in portrait from Activity1
and keep it in Activity1
landscape.
If it is possible, how can I do that?
This is my code:
Activity1.java
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);