当视频视图处于全屏状态时,RecyclerView 被重新创建
Posted
技术标签:
【中文标题】当视频视图处于全屏状态时,RecyclerView 被重新创建【英文标题】:RecyclerView gets Recreated when the videoview is in fullscreen 【发布时间】:2019-01-23 16:51:00 【问题描述】:我有一个recyclerview
,它的 onClick 显示一个带有全屏按钮的videoview
..
但是,当我单击 videoview 上的全屏按钮时.. 我的 RecyclerView 再次显示(或创建)..
我只想在全屏模式下显示 videoview 中的视频..
以下是我的 Acticity OnCreate() 方法:
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.mangal_stuti_activity);
toolbar = findViewById(R.id.toolbar);
toolbar.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
setSupportActionBar(toolbar);
recyclerView = (findViewById(R.id.recycler_view));
mAdapter = new Adapter(this, movieList, this);
RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext());
recyclerView.setLayoutManager(mLayoutManager);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.addItemDecoration(new MyDividerItemDecoration(this, LinearLayoutManager.VERTICAL,16));
recyclerView.setAdapter(mAdapter);
recyclerView.setBackgroundColor(getResources().getColor(R.color.recyclerViewBackground));
recyclerView.addOnItemTouchListener(new RecyclerTouchListener(getApplicationContext(), this.recyclerView, new RecyclerTouchListener.ClickListener()
public void onClick(View view, int position)
toolbar.setVisibility(View.GONE);
playVideo();
public void onLongClick(View paramAnonymousView, int paramAnonymousInt)
));
prepareMovieData(); // possibly this function is creating the recyclerview again when the fullScreen is called..
mVideoView = findViewById(R.id.videoView);
mYouTuDraggingView = findViewById(R.id.youtube_view);
mYouTuDraggingView.setCallback(this);
controlPanel = new YoutubeControlPanel(this);
controlPanel.setYouTuDraggingView(mYouTuDraggingView);
mVideoView.setControlPanel(controlPanel);
controlPanel.getFullScreenIv().setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
mYouTuDraggingView.fullScreenChange();
);
controlPanel.getDownIv().setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
toolbar.setVisibility(View.VISIBLE);
mYouTuDraggingView.fullScreenGoMin();
);
YouTuDraggingView类中的fullScreenChange()如下:
void fullScreenChange()
if (isLandscape())
isLandscapeToPortrait = true;
mActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);
else
isPortraitToLandscape = true;
mActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE);
mangal_stuti_activity.xml
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
tools:context="com.amitabh.dhamma_jaagran.MangalStuti"
android:orientation="vertical"
android:layout_
android:layout_
android:background="@color/recyclerViewBackground"
android:id="@+id/activity_main"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<include layout="@layout/toolbar_stuti_activities"/>
<RelativeLayout
android:layout_
android:layout_>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_
android:layout_>
</android.support.v7.widget.RecyclerView>
<com.amitabh.YouTuDraggingView
android:id="@+id/youtube_view"
android:layout_
android:layout_
android:layout_gravity="bottom"
android:orientation="vertical"
android:visibility="invisible"/>
<TextView
android:layout_
android:layout_
android:layout_alignParentStart="true"
android:id="@+id/footer_text"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:background="@color/colorPrimaryDark"
android:text="@string/copyright_footer"
android:textAlignment="center"
android:textColor="@color/white" />
</RelativeLayout>
</LinearLayout>
当我单击 videoview 上的全屏按钮时.. videoview 只应在全屏上显示.. 而不是 recyclerview...
我认为问题可能出在
mAdapter = new Adapter(this, movieList, this);
当videoview
进入全屏时,另一个movieList
被创建..
对此的任何帮助都会对我有很大帮助.. 提前谢谢..
【问题讨论】:
【参考方案1】:能否分享一下 mangal_stuti_activity.xml 代码。
确保将 youtube_view 的宽度和高度设置为 match_parent。
【讨论】:
它只设置为match_parent
..用xml更新了我的问题..我认为问题在于设置recyclerview
适配器而不是布局文件......
当你切换到全屏模式时,你必须将 recyclerView 的可见性设置为消失,当你从全屏模式返回时,你可以让它可见【参考方案2】:
当您的视频全屏显示时,您似乎在请求更改方向。当活动方向发生变化时,活动将被销毁并重新创建。这是Activity Life Cycle 的一部分。发生这种情况时,您将必须对活动和 RecyclerView 执行 save and restore your state 的操作。
这是一个如何做到这一点的示例:
https://guides.codepath.com/android/Handling-Configuration-Changes#recyclerview
【讨论】:
我提供的链接中有示例。他们会告诉你具体的操作方法。【参考方案3】:我刚刚在AndroidManifest.xml
文件中播放视频的活动中添加了这一行
android:configChanges="orientation|screenSize"
这会阻止重新创建活动。
感谢vignesh-ramachandra 他在here 中提供的回答
【讨论】:
以上是关于当视频视图处于全屏状态时,RecyclerView 被重新创建的主要内容,如果未能解决你的问题,请参考以下文章
Android RecyclerView - 触摸时动画项目提升
MPMoviePlayerController:无法从全屏切换到嵌入式