我正在使用Android的VideoView在我的应用中播放嵌入式视频.它在我的设备上工作正常,但我一直在Xamarin Android播放器中收到"无法播放此视频"消息和黑屏.

相应的错误日志如下所示:
Unable to play video
[MediaPlayer] Error (1,-38)
[VideoView] Error: 1,-38
Run Code Online (Sandbox Code Playgroud)
我发现了一些有关此错误的帖子,但没有一个帮助我解决此问题,我无法找到此状态代码的正确说明.
我的C#代码如下所示:
videoView = new VideoView (Context);
base.SetNativeControl (videoView);
videoView.SetOnErrorListener (new ErrorListener ());
string fileName = e.NewElement.FileSource;
fileName = fileName.ToLower ().Substring (0, fileName.LastIndexOf ("."));
int resourceID = Context.Resources.GetIdentifier (fileName, "raw", Context.PackageName);
var fullPath = String.Format ("android.resource://{0}/{1}", Context.PackageName, resourceID);
videoView.SetVideoPath (fullPath);
videoView.RequestFocus ();
videoView.Start ();
Run Code Online (Sandbox Code Playgroud) android android-emulator android-mediaplayer xamarin android-videoview
我有一个Facebook页面,这也是FB的一个地方,所以用户可以登记到那个地方(例如用iPhone).现在我想从我的页面中获取所有已签入的用户.但是我总是得到一个空数组,即使签入了几个用户.我正在使用Graph-API中的以下URI:
https://graph.facebook.com/PAGE_ID/checkins?access_token=ACCESS_TOKEN
对于访问令牌,我创建了一个FB-app并分配了权限manage_pages,offline_access,user_checkins和friends_checkins.
我错过了什么?