RecyclerView にいくつかのカードがあります。各カードには、カスタム ビデオ ビューが保持されます。ビデオビューをクリックすると、ビデオが開始されます。ただし、私の場合、青い枠線が表示されるだけで、ビデオは実行されません。コードを以下に示します。
custom_card_view.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_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 は、ビデオの開始時に画面全体を取得する必要があります。どうすればこれを達成できますか?
ありがとう!