I want to play a video, so I'm using action_view like this.
intent.setAction(android.content.Intent.ACTION_VIEW);
Does anyone know of a way to specify that I want the video always play开发者_开发百科ed in a vertical screen orientation, or that determination always up to an activity itself?
That determination is up to the activity itself.
In the layout XML file you could add:
android:orientation="vertical"
精彩评论