Поиск…


Синтаксис

  1. setColorSchemeResources устанавливает цвета индикатора SwipeToRefreshLayout
  2. setOnRefreshListener устанавливает, что делать, когда макет
  3. app: layout_behavior = "@ string / appbar_scrolling_view_behavior", если у вас есть панель инструментов с вашим макетом, добавьте это с помощью scrollFlags на панели инструментов, и панель инструментов будет скользить во время прокрутки вниз и снова входить во время прокрутки вверх.

Проведите по экрану с помощью RecyclerView

Чтобы добавить макет Swipe To Refresh с помощью RecyclerView, добавьте следующее в файл макета Activity / Fragment:

<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/refresh_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:scrollbars="vertical" />

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

В вашей деятельности / фрагменте добавьте следующее для инициализации SwipeToRefreshLayout :

    SwipeRefreshLayout mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.refresh_layout);
    mSwipeRefreshLayout.setColorSchemeResources(R.color.green_bg,
            android.R.color.holo_green_light,
            android.R.color.holo_orange_light,
            android.R.color.holo_red_light);

    mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
            // Execute code when refresh layout swiped
        }
    });

Как добавить Swipe-to-Refresh к вашему приложению

Убедитесь, что в файл build.gradle вашего приложения добавлена build.gradle зависимость:

compile 'com.android.support:support-core-ui:24.2.0'

Затем добавьте SwipeRefreshLayout в ваш макет:

<android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

     <!-- place your view here -->       

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

Наконец, реализуем прослушиватель SwipeRefreshLayout.OnRefreshListener .

mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_refresh_layout);
mSwipeRefreshLayout.setOnRefreshListener(new OnRefreshListener() {
    @Override
    public void onRefresh() {
         // your code
    }
});


Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow