gpt4 book ai didi

java - 带有 recyclerview 和 tablayout 的动态高度 viewpager

转载 作者:行者123 更新时间:2023-12-04 00:52:56 30 4
gpt4 key购买 nike

我有一个包含 3 个页面的 viewpager,每个页面可能包含也可能不包含 recyclerview。 recyclerview 中的项目数量因用户而异。我在这个问题之后制作了一个自定义 View 寻呼机: How to wrap the height of a ViewPager to the height of its current Fragment? .
我现在面临的问题有两点:

1. 切换选项卡时,会为每个 fragment 调用 requestLayout()。因此,当 recyclerview 包含很多项目时,切换时会出现滞后,因为它会一次又一次地测量选项卡。 recyclerview 中的项目是动态的,这意味着它在滚动行为上加载了更多项目。

2. 当recyclerview 没有item 时,显示一个textview 表示没有item。因为 viewpager 包装了内容,所以我似乎无法在 fragment 中将 textview 居中。所以当没有recyclerview的时候,我需要viewpager来填满整个高度。

这是我的 CustomViewPager 代码:


public class CustomViewPager extends ViewPager {

private int currentPagePosition = 0;
Context context;

public CustomViewPager(@NonNull Context context) {
super(context);
this.context = context;
}

public CustomViewPager(@NonNull Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
this.context = context;
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
View child = getChildAt(currentPagePosition);
if(child != null) {
child.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
int h = child.getMeasuredHeight();
heightMeasureSpec = MeasureSpec.makeMeasureSpec(h, MeasureSpec.EXACTLY);
}
if(heightMeasureSpec != 0) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}

public void measureCurrentView(int position) {
currentPagePosition = position;
requestLayout();
}


@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
return false;
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
return false;
}
}

这是我的 viewpager 布局文件:


<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="0dp"
android:layout_height="250dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:background="#F8F8F8"
android:id="@+id/header"/>

<com.google.android.material.tabs.TabLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:id="@+id/tabs">

<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1ST"
/>
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2ND"
/>
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3RD"
/>


</com.google.android.material.tabs.TabLayout>

<com.example.smilee.adapters.CustomViewPager
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/items"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/tabs"

/>

</androidx.constraintlayout.widget.ConstraintLayout>

</androidx.core.widget.NestedScrollView>

这是每个 fragment 的布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@android:color/white">

<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recyclerview"
android:nestedScrollingEnabled="false"
android:visibility="gone"/>


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:text="No items to show."
android:fontFamily="@font/medium"
android:textColor="#777"
android:textSize="15dp"
android:gravity="center"
android:id="@+id/noItemText"
android:includeFontPadding="false"
android:visibility="visible"/>


</androidx.constraintlayout.widget.ConstraintLayout>


如何实现?
无论 recyclerview 中的项目数量如何,我如何才能如此快速地在选项卡之间切换,以及如果 recyclerview 不可用,我如何通过填充整个高度来使 TextView 居中?希望你能帮忙。问候。

最佳答案

您的主要问题是将 RecyclerView 嵌套在 ScrollView 中。这很容易导致性能问题,因为 RecyclerView 不知道它自己的哪一部分当前在屏幕上,所以它一次加载所有项目。在onBindViewHolder 中添加一个打印日志来确认这一点。这也意味着 RecyclerView 的高度(以及 viewpager 的高度)现在是任意的,不受屏幕大小的限制,这将使您的文本无法居中。

为了实现您想要的布局,我会将 NestedScrollView 替换为 CoordinatorLayout。对于我认为完全相同的情况,我已经在我的应用程序中成功完成了这项工作。那么您将不再需要自定义 ViewPager。

CoordinatorLayout with recyclerview below

这是一个使用您的布局的测试工作示例:

 <?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">

<RelativeLayout
android:id="@+id/header"
android:layout_width="0dp"
android:layout_height="250dp"
android:background="#F8F8F8"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/header">

</com.google.android.material.tabs.TabLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.appbar.AppBarLayout>

<androidx.viewpager.widget.ViewPager
android:id="@+id/items"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_anchor="@id/app_layout"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

请注意,您必须从 RecyclerView 中删除这一行:android:nestedScrollingEnabled="false"

关于java - 带有 recyclerview 和 tablayout 的动态高度 viewpager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65034767/

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