gpt4 book ai didi

android - TabLayout Indicator 在选择 Tab 时滑动非常慢

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:31:50 29 4
gpt4 key购买 nike

我将 TabLayout 与两个嵌套 fragment 一起使用,我注意到当用户单击另一个选项卡时,内容会立即发生变化,指示器从第一个选项卡移动到第二个选项卡实际上需要 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();
}

}

最佳答案

在 list 文件中的应用程序标签下使用此属性。

 android:hardwareAccelerated="true"

关于android - TabLayout Indicator 在选择 Tab 时滑动非常慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36667730/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com