RxJava 是一个反应式编程库,用于通过可观察序列编写异步程序和基于事件的程序。
Places Rx 库 可让您在 Maps SDK for Android 上接收异步事件的可观察序列 和 Places SDK for Android,以便您利用丰富的 RxJava 功能。
安装
如需在 Google 地图项目中安装 Places Rx 库,请执行以下操作:
将以下依赖项添加到您的模块级
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")
- 在 Android Studio 中重新构建您的项目,以同步这些更改。
用法示例
以下示例展示了如何获取 Single(单个) 在获取地点详情时进行订阅:
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}") } ) }
后续步骤
- 查看 Places Rx 库 GitHub 项目页面。
- 查看 Places Rx 库 API 参考文档。