水平RecyclerView顶部的滚动条

时间:2017-12-05 18:10:22

标签: android android-recyclerview android-scrollbar

我正在开发 Horizo​​ntal RecyclerView 的简单演示。

我想显示滚动条和recyclerview。所以我在XML中添加了android:scrollbars="horizontal"android:scrollbarSize="5dp"

我可以获得滚动条,但它显示在底部。我想要实现的是将它显示在Top上。 我发现了一些像这样的问题,但没有一个是针对水平的recyclerView +顶部滚动条。

  

以下是我到目前为止所尝试的代码:

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:isScrollContainer="false"
    android:orientation="horizontal"
    android:scrollbars="horizontal"
    android:scrollbarSize="5dp"
    android:visibility="visible" />

Image, that describes my query

谢谢!

1 个答案:

答案 0 :(得分:1)

我已经搜索了几个小时,但根据您的要求找不到任何东西。但是有一些trikes或者使用一些hacky代码,我们可以按照你的要求输出。

在xml文件中设置如下所示的RecyclerView

<android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbarAlwaysDrawHorizontalTrack="true"
        android:scrollbarSize="10dp"
        android:scrollbarStyle="outsideInset"
        android:scrollbarThumbVertical="@color/black"
        android:scrollbars="horizontal"
        android:verticalScrollbarPosition="right"/>

将您的数据按顺序放在ListArrayList中,因为我们需要轮换recyclerviews,因此当我们旋转它时,我们的数据将显示为ASEC订单。

   //call this method for set recyclerview
   private void setRecyclerView()
    {
        //Please make sure with your item that it will be inserted in revers order then an then it will be working
        ArrayList<String> itemList = new ArrayList<>();
        for (int i = 50; i > 0; i--){
            itemList.add("item " + i);
        }

        ContainerAdapter adapterMessage = new ContainerAdapter(MainActivity.this, itemList);
        if (adapterMessage != null)
        {
            rvItemList.setHasFixedSize(true);
            rvItemList.setLayoutManager(new LinearLayoutManager(MainActivity.this,
                    LinearLayoutManager.HORIZONTAL, false);
            rvItemList.setItemAnimator(new DefaultItemAnimator());
            rvItemList.setAdapter(adapterMessage);
            //here is the main line for your requirement
            rvItemList.setRotation(180);
            adapterMessage.notifyDataSetChanged();
        }

现在最后,在您的适配器中,请按照下面的方向旋转所有视图。

public class ViewHolder extends RecyclerView.ViewHolder
    {
        TextView txt_name;
        public ViewHolder(View itemView) {
            super(itemView);
            txt_name = (TextView) itemView.findViewById(R.id.txt_name);
            // here you need to revers rotate your view because your recyclerview is already rotate it so your view is also rotated and you need to revers rotate that view
            txt_name.setRotation(-180);
        }
    }

如果您执行上述代码,那么您的项目及其输出将如下所示OutPut

请确保执行此类代码,因为android不对此类代码负责,但根据您的要求,您可以这样做。