Xamarin Android 中视频播放器中的前进和后退选项问题
Posted
技术标签:
【中文标题】Xamarin Android 中视频播放器中的前进和后退选项问题【英文标题】:Issue with Forward and backward options in Video player in Xamarin Android 【发布时间】:2021-01-04 07:46:55 【问题描述】:我需要在 Xamarin(Andriod) 开发的移动应用程序中显示一个视频,其中向前移动 15 秒,向后移动 5 秒
我能得到一些帮助吗
【问题讨论】:
【参考方案1】:在您的情况下,您似乎使用 MediaController
。但是,如果要自定义前进后退的长度,则需要创建自定义MediaController
。
在 XML 中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
android:orientation="vertical">
<VideoView
android:layout_
android:layout_
android:id="@+id/videoView1" />
<LinearLayout
android:background="@android:color/darker_gray"
android:layout_
android:layout_
android:orientation="horizontal"
>
<Button
android:text="back"
android:id="@+id/back"
android:layout_
android:layout_/>
<Button
android:text="play"
android:id="@+id/play"
android:layout_
android:layout_/>
<Button
android:text="forward"
android:id="@+id/forward"
android:layout_
android:layout_/>
</LinearLayout>
</LinearLayout>
在活动中
VideoView videoView;
protected override void OnCreate(Bundle savedInstanceState)
base.OnCreate(savedInstanceState);
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
SetContentView(Resource.Layout.activity_main);
//...
videoView = FindViewById<VideoView>(Resource.Id.videoView1);
videoView.SetVideoURI(Android.Net.Uri.Parse("xxx.mp4")); // Path of your saved video file.
videoView.Start();
Button back = FindViewById<Button>(Resource.Id.back);
back.Click += Back_Click;
Button play = FindViewById<Button>(Resource.Id.play);
play.Click += Play_Click;
Button forward = FindViewById<Button>(Resource.Id.forward);
forward.Click += Forward_Click; ;
private void Forward_Click(object sender, EventArgs e)
videoView.SeekTo(videoView.CurrentPosition + 5 * 1000);
private void Play_Click(object sender, EventArgs e)
var button = sender as Button;
if (videoView.IsPlaying)
button.Text = "Play";
videoView.Pause();
else
button.Text = "Pause";
videoView.Start();
private void Back_Click(object sender, EventArgs e)
videoView.SeekTo(videoView.CurrentPosition-15*1000);
这样你只需要根据需要设置按钮的图标。
【讨论】:
以上是关于Xamarin Android 中视频播放器中的前进和后退选项问题的主要内容,如果未能解决你的问题,请参考以下文章
最新 iOS 更新 (12.2) 后,本地存储中的视频未在 WebView (Xamarin.Forms) 中播放