【问题标题】:How to change bottom margin of swipeRefreshlayout programmatically?如何以编程方式更改 swipeRefreshlayout 的底部边距?
【发布时间】:2019-06-05 05:37:01
【问题描述】:

我有这样的布局:

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    tools:context=".jobAGENT.JobsList">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="75dp"
        android:gravity="center_horizontal"
        android:text="@string/no_jobs"
        android:textSize="32sp"
        android:textStyle="italic"
        android:visibility="gone" />

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/refresh_t"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginStart="5dp"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="5dp"
        android:background="@color/white">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/job_list_t"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginStart="10dp"
            android:layout_marginTop="10dp"
            android:layout_marginEnd="10dp"
            android:layout_marginBottom="10dp" />

    </android.support.v4.widget.SwipeRefreshLayout>

    <ProgressBar
        android:id="@+id/loader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:visibility="gone" />


</RelativeLayout>

当我达到某些条件时,我想以编程方式更改 RecyclerView 和 SwipeRefreshLayout 的边距。例如,在我的onScrollListener,当我的列表到达末尾时,我想更改视图的底部边距并在其下方显示进度条。我看到了thisthis 的问题,我也设法改变了 refreshLayout 的边距,但是 RV 的最后一项被削减了,我认为我也必须改变 RV 的边距。但我无法获得此视图的布局参数。对于 refreshLayout 我使用了这样的东西:

val param = refreshLayout.layoutParams as RelativeLayout.LayoutParams
param.setMargins(5,10,5,150)
refreshLayout.layoutParams = param

而且效果很好,但是我怎样才能改变放置在刷新布局内的 recyclerview 的边距?

【问题讨论】:

    标签: android android-layout margins


    【解决方案1】:

    RecyclerView 剪切中的最后一项,意思是,您必须仅向 RecyclerView 的最后一个元素添加填充,而不是为完成 RecyclerView 提供填充。

    您可以通过设置 android:clipToPadding="false" 来做到这一点,并将其设置为 paddingBottom 等于您的 SwipeRefreshLayout 的高度。

    你可以这样做:

    <android.support.v7.widget.RecyclerView
        android:paddingBottom="56dp"
        android:clipToPadding="false"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    

    根据您的需要调整paddingBottom

    【讨论】:

      【解决方案2】:

      一个建议,当你到达滚动结束时,将进度条作为recyclerview的一个项目添加到最后一个位置......这将确保显示栏......拥有多种类型的viewholders很容易在回收站视图中,这应该可以解决您的问题而无需添加任何边距/填充

      【讨论】:

      • 我没有将进度条添加为recyclerview的一项
      【解决方案3】:

      试试这个..

      RecyclerView.LayoutParams params = new RecyclerView.LayoutParams(
                  RecyclerView.LayoutParams.MATCH_PARENT,
                  RecyclerView.LayoutParams.MATCH_PARENT
          );
          params.setMargins(50, 50, 50, 50);
          jobListT.setLayoutParams(params);
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2012-10-27
        • 2017-03-17
        • 1970-01-01
        • 2011-05-27
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多