32

我对我的查询进行了很多搜索,但没有一个有用。我在根父布局内的滚动视图中有一个 recyclerview 和一些静态数据,如下所示。

我已经设定 -

scrollview.scrollto(0,0);

因为每次我打开活动时,它都会跳转到 recyclerview firstitem,它会跳过 recyclerview 上方的静态数据。

recyclerview.setNestedScrollingEnabled(false); 
recyclerview.setfocusable(false);

用于平滑滚动。

问题在于——

layoutmanager.scrollToPositionWithOffset(pos,0);

它不工作。在将适配器设置为 recyclerview 后,我已经设置了上述行。也尝试使用 NestedScrollView 但徒劳无功。

虽然我用过

layoutmanager.scrollToPosition(pos);

对于那些跳过代码的人,我将 match_parent 设置为 ScrollView 并将 fillviewport 设置为 true。

这是我的布局。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/bottomsheet"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.inkdrops.khaalijeb.BrandCouponActivity">

    <RelativeLayout
        android:id="@+id/inclusionviewgroup"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <static data/>

        <ScrollView
            android:id="@+id/scrollviewmain"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/one"
            android:fillViewport="true"
            android:scrollbars="none"
            android:layout_above="@+id/donelayout">


            <staticdata/>

                <TextView
                    android:id="@+id/dealstext"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/card1"
                    android:layout_marginTop="10dp"
                    android:layout_marginLeft="10dp"
                    android:textSize="16sp"
                    android:text="Deals &amp; Coupons"
                    android:textColor="#444444" />

                <RelativeLayout
                    android:id="@+id/recyclerlayout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/dealstext"
                    android:layout_marginTop="5dp"
                    android:layout_marginLeft="8dp"
                    android:layout_marginRight="8dp"
                    android:background="@color/colorbackground">

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/coupon_rec_view"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@color/colorbackground"
                        android:visibility="visible"/>


                </RelativeLayout>

                <statisdata>


            </RelativeLayout>

        </ScrollView>

        include layout="@layout/activity_coupons"
            android:visibility="gone"
            />

    </RelativeLayout>

</RelativeLayout>
4

5 回答 5

35

需要ScrollView通过获取RecyclerView's child 的顶部位置来滚动:

float y = recyclerView.getY() + recyclerView.getChildAt(selectedPosition).getY();    
scrollView.smoothScrollTo(0, (int) y);
于 2016-12-28T12:36:29.603 回答
0

您可以使用滚动视图方法到达您想要的位置:

scrollView.smoothScrollTo(int x, int y);
于 2017-07-26T05:36:06.893 回答
-1

我知道我回答得很晚,但是如果您遇到自动滚动问题,则需要在您的 RelativeLayout 中添加android:descendantFocusability="blocksDescendants"。因此,您的 RealtiveLyout 标记将如下所示:

<RelativeLayout
    android:id="@+id/inclusionviewgroup"
    android:layout_width="match_parent"
    android:descendantFocusability="blocksDescendants"
    android:layout_height="match_parent">
于 2017-04-21T10:20:05.430 回答
-2

第 1 步:添加此行以在回收站视图中选择该位置

  adaptercat.setSelectedItem(Integer.parseInt(dealtypeid));

第2步:通过获取当前位置检查以下构造函数

  public CatgerotyAdapter(Context context, ArrayList<HashMap<String, String>> arraylist,String selectedPosition) {
        this.context = context;
        this.data = arraylist;
        resultp = new HashMap<>();
        currentItemPos=Integer.parseInt(selectedPosition)-1;
    }

第3步:这个功能也在适配器中

  public void setCurrentItem(int item)
    {
        this.currentItemPos = item;
    }

最后一步 4. 在你的类的适配器之外添加这个函数

 private void onPagerItemClick2(Integer tag)
{
    adaptercat.setCurrentItem(tag);
    catsp.setAdapter(adaptercat);
}

将此行放入您的列表视图项目中单击列表器

  ((ClassName) context).onPagerItemClick2(position);

当您打开列表视图时,将选择该位置..

于 2017-07-25T10:59:05.933 回答
-3

使用此方法scrollToPosition (int position)这对我有用。希望这会帮助你。

        mMessagesRecyclerView = (RecyclerView) findViewById(R.id.messagesRecyclerView);
        LinearLayoutManager layoutManager = new LinearLayoutManager(this);
        layoutManager.setStackFromEnd(true);

        mMessagesRecyclerView.setLayoutManager(layoutManager);
        mMessagesAdapter = new MessagesAdapter();
        mMessagesRecyclerView.setAdapter(mMessagesAdapter);

        mMessagesRecyclerView.scrollToPosition(your position);

这是我的布局结构

在此处输入图像描述

于 2017-07-25T11:37:29.830 回答