ไลบรารี RxJava

RxJava เป็นไลบรารีโปรแกรมเชิงรับที่ใช้เขียนโปรแกรมที่อิงกับเหตุการณ์และแบบอะซิงโครนัสโดย โดยใช้ลำดับที่สังเกตได้

ห้องสมุด Places Rx ช่วยให้คุณได้รับลําดับที่สังเกตได้สําหรับเหตุการณ์อะซิงโครนัสใน Maps SDK สําหรับ Android Places SDK สำหรับ Android เพื่อให้คุณสามารถใช้ประโยชน์จากชุดคุณลักษณะ RxJava ที่มีมากมาย

การติดตั้ง

วิธีติดตั้งไลบรารี Places Rx ในโครงการ Google Maps ของคุณ

  1. เพิ่มทรัพยากร Dependency ต่อไปนี้ลงในไฟล์ build.gradle ระดับโมดูล

    dependencies {
        // RxJava bindings for the Maps SDK
        implementation("com.google.maps.android:maps-rx:1.0.0")
    
        // RxJava bindings for the Places SDK
        implementation("com.google.maps.android:places-rx:1.0.0")
    
        // It is recommended to also include the latest Maps SDK, Places SDK and RxJava so you
        // have the latest features and bug fixes.
        implementation("com.google.android.gms:play-services-maps:19.0.0")
        implementation("com.google.android.libraries.places:places:3.5.0")
        implementation("io.reactivex.rxjava3:rxjava:3.1.8")
    
  2. สร้างโปรเจ็กต์ใหม่ใน Android Studio เพื่อซิงค์การเปลี่ยนแปลงเหล่านี้

ตัวอย่างการใช้งาน

ตัวอย่างต่อไปนี้แสดงวิธีรับ ซิงเกิล และสมัครรับข้อมูลสถานที่นั้น เมื่อคุณดึงข้อมูลรายละเอียดสถ านที่:

  placesClient.fetchPlace(
    placeId = "thePlaceId",
    placeFields = listOf(Place.Field.ID, Place.Field.NAME, Place.Field.ADDRESS),
    actions = {}
  ).subscribe(
    { response ->
      Log.d("PlacesRx", "Successfully got place ${response.place.id}")
    },
    { error ->
      Log.e("PlacesRx", "Could not get place: ${error.message}")
    }
  )
}

ขั้นตอนถัดไป