当前位置: 首页 > 知识库问答 >
问题:

在CardView中播放视频

景恩
2023-03-14

我在一个回收视图中有几张卡片。每张卡都有一个自定义视频视图。单击视频视图,视频应开始。然而,在我的例子中,它只显示蓝色边框,视频没有运行。代码如下所示,

自定义卡视图。xml:

<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_gravity="center"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_margin="5dip"
    card_view:cardCornerRadius="4dp">


    <com.test.components.CustomVideoView
        android:id="@+id/videoView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        />

    <TextView
        android:id="@+id/info_text"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="2dip"

        />


</android.support.v7.widget.CardView>

自定义视频视图:

import android.content.Context;
import android.net.Uri;
import android.util.AttributeSet;
import android.widget.MediaController;
import android.widget.VideoView;

import com.test.src.R;

    /**
     * Created by Psych on 12/20/14.
     */
    public class CustomVideoView extends VideoView {

        MediaController mMediaController = null;
        private String mVideoUrl = null;

        public CustomVideoView(Context context) {
            super(context);
        }

        public CustomVideoView(Context context, AttributeSet attrs) {
            super(context, attrs);
        }

        /**
         * Initialize all the basic elements here.
         */
        private void initialize() {
            mMediaController = new MediaController(getContext());
        }

        /**
         * Starts up the video.
         * Throws a null pointer exception if the URL is not set
         */
        public void startVideo() {

            // Return as is if there is no URL
            if (mVideoUrl == null) {
                throw new NullPointerException(getContext().getString(R.string.video_null_pointer_message));
            }

            mMediaController.setAnchorView(this);
            setMediaController(mMediaController);
            start();
        }

        public void setmVideoUrl(String mVideoUrl) {
            this.mVideoUrl = mVideoUrl;
            Uri vidUri = Uri.parse(mVideoUrl);
            setVideoURI(vidUri);
        }

        public String getmVideoUrl() {
            return mVideoUrl;
        }
    }

主要活动:

public class MainActivity extends ActionBarActivity {

    RecyclerView.LayoutManager mLayoutManager = null;
    RecyclerView mCardsRecyclerView = null;
    RecyclerView.Adapter mAdapter = null;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initComponents();

        // use this setting to improve performance if you know that changes
        // in content do not change the layout size of the RecyclerView
        mCardsRecyclerView.setHasFixedSize(true);
        mCardsRecyclerView.setLayoutManager(mLayoutManager);
        mCardsRecyclerView.setAdapter(mAdapter);

    }

    /**
     * Initialize all ui components/widgets/elements
     */
    private void initComponents() {
        mCardsRecyclerView = (RecyclerView) findViewById(R.id.cardsListView);
        mLayoutManager = new LinearLayoutManager(this);
        mAdapter = new NewsFeedAdapter();
    }
}

activity\u main。xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/AppTheme"
    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=".MainActivity">


    <android.support.v7.widget.RecyclerView
        android:id="@+id/cardsListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/alertButton" />


</RelativeLayout>

我希望每张卡最初只显示一个缩略图。单击视频后,相关卡应启动视频(不是全部)。视频启动时,VideoView应占据整个屏幕。我怎样才能做到这一点?

谢谢

共有1个答案

景靖琪
2023-03-14

我也有同样的问题。这是另一个stackOverflow问题的答案,为我解决了这个问题。这是通过在VideoView中为高度(或宽度或两者)提供明确的值。例如

<VideoView
   android:id="@+id/mVideoView"
   android:layout_width="match_parent"
   android:layout_height="300dp"
   android:paddingLeft="5dp"
   android:paddingRight="5dp"/>
 类似资料:
  • 问题内容: 我在android中实现了视频播放,这对android来说是全新的,这是我到目前为止收集的部分代码。 根据逻辑,它应该播放视频。不知道我在哪里做错了。 问题答案:

  • 我试图使用插件在flatter应用程序中播放vimeo视频,但没有成功,它抛出了大量错误。请帮助我如何在Flatter应用程序中实现这一点?使用webview或任何插件等?也许一段代码片段对我会有很大帮助! 这是我的代码片段 调试控制台中的错误- E/AccessibilityBridge(28662):VirtualView节点不能是根节点。E/ExoPlayerImplInternal(286

  • 每当我加载html文件时,它都会给我一个错误 每当我按下播放按钮时,就会出现以下错误 我能够加载任何远程视频并运行,但问题是当我从资产文件夹代码加载本地视频以加载文件并设置web视图时 干杯,Saurav

  • 我正在使用视频标签播放我的项目中的视频,我想它只播放mp4。它在chrome中播放有一点滞后,但在ie或Firefox中不播放。我想知道是否有一个简单的修复或更好的嵌入vlc播放器。 并在后端为源设置src。

  • 请问在react中怎么才能在页面中播放avi视频 现在的情况是元素能看到引入的avi文件路径,但是在页面中就是一片空白什么都没有,div和video的宽高都是正常的