1
AndroidでGoogleのジオコーダAPIを使用しようとしています。ここで互換性のない型エラージオコーダGoogle API
はコードです:
private void getLatLong(String inputaddress) throws IOException {
Geocoder mygeocoder = new Geocoder(this.getContext());
List<Address> gclist = mygeocoder.getFromLocationName(inputaddress,1);
}
しかし、私はエラーを取得:
Error: incompatible types: List<android.location.Address> cannot be converted to List<com.google.android.gms.identity.intents.Address>
リストを宣言している間、私は、それがcom.google.android.gms.identity.intents.Address
から輸入されていることを確認していますまだ私が取得していますこのエラー。 どこが間違っているのですか? ありがとうございます。
リスト宣言がandroid.location.Addressタイプで作業を行いました。これをcom.google.android.gms.identity.intents.Addressに変更してみてください – TheAnonymous010