Android
 Computer >> コンピューター >  >> プログラミング >> Android

AndroidのPull-to-Refreshを実装するにはどうすればよいですか?


例に入る前に、Androidでレイアウトを更新するためのプルとは何かを知っておく必要があります。スワイプして更新するように、Androidでpullを呼び出して更新できます。画面を上から下にスワイプすると、setOnRefreshListenerに基づいて何らかのアクションが実行されます。

この例は、Androidプルを実装して更新する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version = "1.0" encoding = "utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android = "https://schemas.android.com/apk/res/android"
   xmlns:app = "https://schemas.android.com/apk/res-auto"
   xmlns:tools = "https://schemas.android.com/tools"
   android:id = "@+id/swipeRefresh"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent"
   tools:context = ".MainActivity">
<LinearLayout
   android:layout_width = "wrap_content"
   android:gravity = "center"
   android:layout_height = "wrap_content">
   <TextView
      android:id = "@+id/text"
      android:textSize = "30sp"
      android:layout_width = "wrap_content"
      android:layout_height = "wrap_content"
      android:text = "Hello World!"/>
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>

上記のコードでは、親レイアウトとしてswipeRefreshLayoutを指定しています。ユーザーがレイアウトをスワイプすると、子ビューを更新できます。

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package com.example.andy.myapplication;

import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
   SwipeRefreshLayout swipeRefresh;
   static int i = 0;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      final TextView textView = findViewById(R.id.text);
      swipeRefresh = findViewById(R.id.swipeRefresh);
      swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
         @Override
         public void onRefresh() {
            i++;
            textView.setText("Tutorialspoint.com "+i);
            swipeRefresh.setRefreshing(false);
         }
      });
   }
}

上記のコードでonRefreshListenerを指定しました。親レイアウトをスワイプすると、RefreshListenerからonRefresh()が呼び出され、以下に示すようにスワイプカウントでテストが更新されます-

swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
   @Override
   public void onRefresh() {
      i++;
      textView.setText("Tutorialspoint.com "+i);
      swipeRefresh.setRefreshing(false);
   }
});

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

AndroidのPull-to-Refreshを実装するにはどうすればよいですか?

上記の結果は初期画面を示しています。上から下にスワイプすると、以下に示すようにテキストビューが更新されます-

AndroidのPull-to-Refreshを実装するにはどうすればよいですか?


AndroidのPull-to-Refreshを実装するにはどうすればよいですか?


  1. AndroidでカスタムAlertDialogビューを実装する方法は?

    この例は、AndroidでカスタムAlertDialogビューを実装する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.Con

  2. AndroidでRecyclerViewを使用して無限のリストを実装するにはどうすればよいですか?

    この例は、AndroidでRecyclerViewを使用してエンドレスリストを実装する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ビルドgradle(モジュールアプリ)に次の依存関係を追加します- implementation 'com.android.support:cardview-v7:28.0.0' implementation 'com.android.support:recyclervie