在Android中,要获取调用onPlaceSelectedListener的元素ID,可以通过以下步骤实现:
<fragment
android:id="@+id/place_autocomplete_fragment"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
PlaceAutocompleteFragment autocompleteFragment = (PlaceAutocompleteFragment)
getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);
autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
@Override
public void onPlaceSelected(Place place) {
String placeId = place.getId();
// 使用placeId进行相关操作
}
@Override
public void onError(Status status) {
// 处理错误情况
}
});
在上述代码中,通过调用place.getId()方法可以获取到选择地点的元素ID(placeId),你可以根据需要进行后续操作。
推荐的腾讯云相关产品:腾讯位置服务(Tencent Location Service) 产品介绍链接地址:https://lbs.qq.com/
领取专属 10元无门槛券
手把手带您无忧上云