gpt4 book ai didi

android - 从 PHP 服务器在 Android 设备中播放视频?

转载 作者:行者123 更新时间:2023-11-29 21:41:18 25 4
gpt4 key购买 nike

我正在开发一个学校应用程序,我想从我的 PHP 服务器播放视频

这段代码我试过了,但是不能播放

Uri video = Uri.fromFile(myurl);
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY);
intent.setDataAndType(video, "video/*");

最佳答案

试试这个,通过解析 uri 在 vedio view 上播放视频

xml部分

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<VideoView
android:id="@+id/surface_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
/>
</FrameLayout>

现在java部分

 public class HelloInterruptVideoStream extends Activity
{
private String path = "http://dl.dropbox.com/u/145894/t/rabbits.3gp";
private VideoView videoview;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
videoview = (VideoView)findViewById(R.id.surface_view);

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

videoview.setVideoURI(Uri.parse(path));
videoview.setMediaController(new MediaController(this));
videoview.requestFocus();
videoview.start();
}
}

在 list 文件中使用网络权限

<uses-permission android:name="android.permission.INTERNET"/>

关于android - 从 PHP 服务器在 Android 设备中播放视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17037332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com