我有一个viewpager有3页,每一页可能包含也可能不包含recyclerview。recyclerview中的项目计数因用户而异。我已经做了一个定制的视图寻呼机,下面是一个问题:如何将视图寻呼机的高度 Package 到其当前片段的高度?。
我现在面临的问题有两个:
**1.**切换选项卡时,为每个片段调用requestlayout()。因此,当recyclerview包含大量项时,切换时会出现延迟,因为它会一次又一次地测量选项卡。并且recyclerview中的项是动态的,这意味着它具有在滚动时加载更多项的行为。
**2.**当recyclerview没有项目时,会显示一个文本视图来指示没有项目。因为viewpager Package 了内容,所以我似乎无法将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>
这是每个片段的布局:
<?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居中?希望你能帮忙。当做。
2条答案
按热度按时间ippsafx71#
您的主要问题是在scrollview中嵌套recyclerview。这很容易导致性能问题,因为recyclerview不知道自己的哪个部分当前在屏幕上,所以它一次加载所有项。添加打印登录
onBindViewHolder
来证实这一点。它还意味着recyclerview高度(因此viewpager高度)现在是任意的,不受屏幕大小的限制,这将使文本无法居中。为了实现您想要的布局,我将用coordinatorlayout替换nestedscrollview。我已经在我的应用程序中成功地做到了这一点,我认为是完全相同的情况。这样您就不再需要自定义的viewpager了。
下面是一个使用您的布局的测试工作示例:
请注意,必须从recyclerview中删除此行:
android:nestedScrollingEnabled="false"
6yoyoihd2#
下面是工作的xml代码。你可以试试这个代码。添加此属性可使nestedscrollview内容达到全高
这是修改后的主布局xml代码