我在安卓視頻播放中遇到問題。從服務器製作視頻並設置爲videoview,但視頻在後臺播放中無法看到視頻,請參閱我的代碼我嘗試過的內容。如何設置android視頻寬度和高度
XML文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<VideoView
android:id="@+id/eventDetailsPage_videosView"
android:layout_width="160dp"
android:layout_height="100dp"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/ic_eventvideo_image" />
</LinearLayout>
的Java類
Uri uri=Uri.parse(mEventDetailsUtil1.getAttachmentsUrls().get(0).getAttach_url());
VideoView mVideosView = (VideoView) findViewById(R.id.eventDetailsPage_videosView);
MediaController mc = new MediaController(this);
mc.setAnchorView(mVideosView);
mc.setMediaPlayer(mVideosView);
mVideosView.setMediaController(mc);
mVideosView.setVideoURI(uri);
mVideosView.requestFocus();
mVideosView.start();
視頻是打開活動時玩,但我不想這樣,我需要當我在VideoView點擊我需要打開視頻全屏。
謝謝@Siddharth維亞斯我會嘗試 – venu
@Ydder這可能會有所幫助http://www.edumobile.org/android/android-beginner-tutorials/how-to-play-a-video-file/ –