我发现了类似的问题,但对我没有任何作用。我试着从这个URL播放视频:
http://videocdn.bodybuilding.com/video/mp4/62000/62792m.mp4
我的java代码:
VideoView videoView= (VideoView)findViewById(R.id.exerciseVideo);
Uri uri = Uri.parse(TEST_URL);
videoView.setVideoURI(uri);
videoView.requestFocus();
videoView.start();
当我运行应用程序时,Activity中没有显示任何内容,IDE也没有显示任何错误。有什么想法吗?
编辑:
我想在其中显示视频的活动:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.martin.fitnessapp.ExerciseDetailActivity"
android:orientation="vertical">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/exerciseImgA"
android:layout_weight="1"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:paddingRight="8dp"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/exerciseImgB"
android:layout_weight="1"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:paddingLeft="8dp"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text=""
android:id="@+id/exerciseDesc" />
<VideoView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/exerciseVideo" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/guideImg"
android:scaleType="fitCenter"
android:adjustViewBounds="true"/>
</LinearLayout>
</ScrollView>
7条答案
按热度按时间lqfhib0f1#
试试这个代码。这段代码对我来说非常好用。
41ik7eoe2#
对我来说,把URL从
收件人:
成功了
换句话说,我使用HTTPS而不是HTTP。
我使用以下代码来启动视频:
n6lpvg4x3#
我知道你不应该用
wrap_content
来表示VideoView
的高度。VideoView
在视频缓存后未自行调整大小snvhrwxg4#
请添加互联网权限,将layout_height wrap_content更改为match parent。这是这个问题的代码
5rgfhyps5#
然后接受许可
5gfr0r5j6#
m2xkgtsf7#
首先,您需要在AndroidManifest.xml文件中设置Internet权限,如下所示:
然后在Android中播放来自URL的视频,使用下面的结构以获得更多的可读性,我评论了代码:)