2016-07-19 22 views
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から輸入されていることを確認していますまだ私が取得していますこのエラー。 どこが間違っているのですか? ありがとうございます。

+2

リスト宣言がandroid.location.Addressタイプで作業を行いました。これをcom.google.android.gms.identity.intents.Addressに変更してみてください – TheAnonymous010

答えて

3

これは

List<android.location.Address> gclist ; 
     gclist = mygeocoder.getFromLocationName(inputaddress,1); 
関連する問題