如何以编程方式更改swipeRefreshlayout的底边距?

时间:2019-06-05 05:37:01

标签: android android-layout margins

我有这样的布局:

<?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的边距?

3 个答案:

答案 0 :(得分:1)

一个建议,当您到达滚动端时,将进度条添加到recyclerview的最后一个位置...这将确保显示该进度条。具有多种类型的视图支架很容易在recyclerview中,这应该可以解决您的问题,而无需添加任何边距/填充

答案 1 :(得分:1)

HomeViewController剪切中的最后一项,这意味着您仅需向LoginViewController的最后一个元素添加填充,而不必为完整的RecyclerView添加填充。

您可以通过设置RecyclerView”并将其设置为RecyclerView等于您的android:clipToPadding="false的高度来实现。

您可以执行以下操作:

paddingBottom

根据需要调整SwipeRefreshLayout

答案 2 :(得分:1)

尝试一下。

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