- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 C# 中的 Visual Studio 编写一个 Android 应用程序。我正在使用 Places 来实现自动完成功能。我刚刚将 Xamarin.GooglePlayServices NuGet 更新为最新版本 60.1142.0,现在
var intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.ModeFullscreen)
.SetFilter(autocompleteFilter)
.Build(this);
不再编译:
IntentBuilder“错误 CS0426:类型名称‘IntentBuilder’在‘PlaceAutocomplete’类型中不存在”
我能理解是改了api,但是怎么改。甚至文档都引用了这段旧代码。
泰
最佳答案
Xamarin.GooglePlayServices.Place
v60.1142.0 包/nuget 已损坏。
包中 bundle 的 Java 类是正确的,并且确实有 PlaceAutocomplete.IntentBuilder
类:
com/google/android/gms/location/places/ui/PlaceAutocomplete$IntentBuilder.class
但 C# 绑定(bind)没有公开它,缺少 Metadata.xml
转换:
<attr path="/api/package[@name='com.google.android.gms.location.places.ui']/class[@name='PlaceAutocomplete.IntentBuilder']" name="extends">java.lang.Object</attr>
回复:GooglePlayServicesComponents places Transforms Metadata.xml
我上周从源代码构建来为某人修复它,甚至没有看过 bugzilla.xamarin.com查看是否已报告。
关于android - GooglePlayeServices.Places 版本 60 中缺少 PlaceAutocomplete.IntentBuilder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47768722/
我正在尝试通过 intentBuilder 创建 Intent 来实现 google Places API(Places Autocomplete)。我的应用通过单击按钮成功获得了一个 intent,
我已将 Googleplaces 的 gradle 从 8.4.0 更新到 10.0.1 使用 编译 'com.google.android.gms:play-services-places:10.0
我重用了 Android 团队的 Google PlaceAutocomplete 示例项目中的代码。 我为每个项目使用了不同的 key (还在谷歌控制台中为 Android 启用了 Google P
首先,对不起我的英语。我正在实现一个用于搜索地址的 View ,我正在使用 Places API,我的代码打开一个待处理的 Intent,请遵循代码: Intent intent = new
我正在使用此处描述的 PlaceAutocomplete Activity :http://googlegeodevelopers.blogspot.co.id/2015/12/autocomplet
我有一个非常奇怪的问题。 PlaceAutoComplete 在我的调试 apk 中运行良好。但现在在我签名的 apk 中,自动完成 fragment 显示,但如果我输入任何内容,它只会返回到上一个屏
我已经完成了获取城市名称的代码。但现在根据新的要求,我还需要来自 com.google.android.gms.location.places.ui.PlaceAutocomplete api 的状态
我正在构建一个应用程序,它使用谷歌地图 API 来显示用户的当前位置。我放置了一个 PlcaeAutoComplete fragment ,用于通过以下链接搜索特定位置 https://develop
我在我的 Activity 中使用了 autoComplete Places API 和 google maps。我想删除出现在 autoComplete Places API 下拉列表中的 Logo
我在我的 android 项目中实现了 PlaceAutocomplete 一切工作正常,但是根据它的工作,调用这个(PlaceAutocomplete) Activity 时显示为空 使用这段代码启
我正在创建一个 Android 应用程序。因为我正在使用 PlaceAutocomplete.IntentBuilder 从 Google 获取地址。 我想更改 PlaceAutocomplete V
我正在使用 Google Places API。但是如果不实现其余 API,我找不到减少请求数量的方法。 try { Intent intent = new PlaceAuto
我试图调用一个 Intent 来启动 EditText 的 OnClickListener 中的自动完成 Activity 。当我直接在 onCreate 中嵌入 PlaceAutocompleteF
我正在使用 C# 中的 Visual Studio 编写一个 Android 应用程序。我正在使用 Places 来实现自动完成功能。我刚刚将 Xamarin.GooglePlayServices N
Google Places API 已激活,所有其他 MAP 服务均按预期工作,Places API 除外。非常感谢任何建议 PlaceAutocomplete: Error getting auto
我是一名优秀的程序员,十分优秀!