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

Kotlinを使用してAndroidでスワイプリフレッシュレイアウトを作成するにはどうすればよいですか?


この例は、Kotlinを使用してAndroidでスワイプ更新レイアウトを作成する方法を示しています。

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

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

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
      android:id="@+id/swipe"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
   <TextView
      android:id="@+id/textView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:text="Swipe to Reload"
      android:textColor="@android:color/background_dark"
      android:textSize="24sp"
      android:textStyle="bold" />
   </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</RelativeLayout>

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

に追加します
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.os.Handler
import android.widget.TextView
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
class MainActivity : AppCompatActivity() {
   lateinit var swipeRefreshLayout: SwipeRefreshLayout
   lateinit var textView: TextView
   var number: Int = 0
   override fun onCreate(savedInstanceState: Bundle?) {
      super.onCreate(savedInstanceState)
      setContentView(R.layout.activity_main)
      title = "KotlinApp"
      swipeRefreshLayout = findViewById(R.id.swipe)
      textView = findViewById(R.id.textView)
      swipeRefreshLayout.setOnRefreshListener {
         number++
         textView.text = " Total number = $number"
         Handler().postDelayed(Runnable {
            swipeRefreshLayout.isRefreshing = false
         }, 4000)
      }
   }
}

ステップ4 −次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
   package="com.example.q11">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、[実行]アイコンをクリックします ツールバーからKotlinを使用してAndroidでスワイプリフレッシュレイアウトを作成するにはどうすればよいですか? 。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します。

Kotlinを使用してAndroidでスワイプリフレッシュレイアウトを作成するにはどうすればよいですか?

Kotlinを使用してAndroidでスワイプリフレッシュレイアウトを作成するにはどうすればよいですか?


  1. AndroidアプリでgridViewレイアウトを作成するにはどうすればよいですか?

    この例は、AndroidアプリでgridViewレイアウトを実行する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="htt

  2. Androidアプリでタブレイアウトを作成する方法は?

    この例は、Androidアプリでタブレイアウトを作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 –次の依存関係を追加して、タブレイアウトを作成します- implementation 'com.android.support:design:28.0.0' ステップ3 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version=&q