text 在Android中使用PlaceAutoComplete Builder时出错的说明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 在Android中使用PlaceAutoComplete Builder时出错的说明相关的知识,希望对你有一定的参考价值。
// call Google Places Autocomplete
try {
AutocompleteFilter autocompleteFilter = new AutocompleteFilter.Builder()
.setTypeFilter(Place.TYPE_COUNTRY)
.setCountry("GH")
.build();
Intent intent =
new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY)
.setFilter(autocompleteFilter)
.build(AddressActivity.this);
startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);
} catch (GooglePlayServicesRepairableException e) {
// TODO: Handle the error.
} catch (GooglePlayServicesNotAvailableException e) {
// TODO: Handle the error.
}
//onActivity Result
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Log.e("Done "+ requestCode,"Requesting "+ resultCode);
if (requestCode == PLACE_AUTOCOMPLETE_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
Place place = PlaceAutocomplete.getPlace(this, data);
office.setText(place.getName());
} else if (resultCode == PlaceAutocomplete.RESULT_ERROR) {
Status status = PlaceAutocomplete.getStatus(this, data);
Log.i("Address", status.getStatusMessage());
}
}
}
以上是关于text 在Android中使用PlaceAutoComplete Builder时出错的说明的主要内容,如果未能解决你的问题,请参考以下文章
在服务器上为 GCP Speech to Text 生成 AccessToken 以在 Android/iOS 中使用
Google Places Api,放置自动完成入站查询
Android Text 应该出现在 Switch 的两侧
www.text 未在 android 中显示完整数据
使用 android:text="@string" 不会替换 strings.xml 文件中的字符串值
在 Android 中删除绘画标志