我正在使用带有两个嵌套片段的TabLayout
,我注意到当用户点击另一个Tab时,内容立即更改,指示器从第一个Tab移动到第二个Tab需要3-4秒
我在迄今为止尝试过该应用程序的任何设备中都有相同的行为(不仅仅是genymotion)。 Nexus 4和Nexus 5X是一些测试设备。
布局是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:EMVideoView="http://schemas.android.com/apk/res-auto"
android:background="@color/white"
android:clickable="true"
android:layout_width="match_parent" android:layout_height="match_parent">
<com.devbrackets.android.exomedia.EMVideoView
android:id="@+id/video_play_activity_video_view"
android:layout_width="match_parent" android:layout_height="360dp"
EMVideoView:defaultControlsEnabled="true"/>
<android.support.design.widget.TabLayout
android:id="@+id/nested_tabs" android:layout_below="@+id/video_play_activity_video_view"
android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
app:tabMode="fixed" app:tabGravity="fill"/>
<FrameLayout android:id="@+id/fl_nested_tabs_container" android:layout_below="@+id/nested_tabs"
android:layout_width="match_parent" android:layout_height="wrap_content"/>
以及我更改标签的代码:
@Override
public void onTabSelected(TabLayout.Tab tab) {
if (isCommentsFragmentSelected) {
isCommentsFragmentSelected = false;
getChildFragmentManager()
.beginTransaction()
.replace(R.id.fl_nested_tabs_container, PollsFragment.newInstance())
.commit();
} else {
isCommentsFragmentSelected = true;
getChildFragmentManager()
.beginTransaction()
.replace(R.id.fl_nested_tabs_container, CommentsFragment.newInstance())
.commit();
}
}
答案 0 :(得分:0)
在清单文件的应用程序标记下使用此属性。
android:hardwareAccelerated="true"
答案 1 :(得分:-1)
我还在使用ViewPager的三个标签布局中使用嵌套片段。设置offscreen page limit解决了我的慢速加载问题。
viewPager.setOffscreenPageLimit(2);