簡體   English   中英

自動完成文字檢視Google Places api描述-> place_id

[英]Autocomplete textview google places api description -> place_id

我正在使用Google的自動填充地點信息來獲取位置信息。 現在,當他們單擊這些預測之一時,我想獲取place_id,但我不知道該怎么做?

這是我的PlcaesAutoCompleteAdapter:

public class PlacesAutoCompleteAdapter extends ArrayAdapter<String> implements Filterable {
    private ArrayList<String> resultList;

    public PlacesAutoCompleteAdapter(Context context, int textViewResourceId) {
        super(context, textViewResourceId);
    }

    @Override
    public int getCount() {
        return resultList.size();
    }

    @Override
    public String getItem(int index) {
        return resultList.get(index);
    }

    @Override
    public Filter getFilter() {
        Filter filter = new Filter() {
            @Override
            protected FilterResults performFiltering(CharSequence constraint) {
                FilterResults filterResults = new FilterResults();
                if (constraint != null) {
                    // Retrieve the autocomplete results.
                    resultList = autocomplete(constraint.toString());

                    // Assign the data to the FilterResults
                    filterResults.values = resultList;
                    filterResults.count = resultList.size();
                }
                return filterResults;
            }

            @Override
            protected void publishResults(CharSequence constraint, FilterResults results) {
                if (results != null && results.count > 0) {
                    notifyDataSetChanged();
                }
                else {
                    notifyDataSetInvalidated();
                }
            }};
        return filter;
    }

    private static final String PLACES_API_BASE = "https://maps.googleapis.com/maps/api/place";
    private static final String TYPE_AUTOCOMPLETE = "/autocomplete";
    private static final String OUT_JSON = "/json";

    private static final String API_KEY = "";

    private static final String LOG_TAG = "ExampleApp";



    private ArrayList<String> autocomplete(String input) {
        ArrayList<String> resultList = null;



        HttpURLConnection conn = null;
        StringBuilder jsonResults = new StringBuilder();
        try {
            StringBuilder sb = new StringBuilder(PLACES_API_BASE + TYPE_AUTOCOMPLETE + OUT_JSON);
            sb.append("?key=" + API_KEY);
            sb.append("&input=" + URLEncoder.encode(input, "utf8"));

            URL url = new URL(sb.toString());
            conn = (HttpURLConnection) url.openConnection();
            InputStreamReader in = new InputStreamReader(conn.getInputStream());

            // Load the results into a StringBuilder
            int read;
            char[] buff = new char[1024];
            while ((read = in.read(buff)) != -1) {
                jsonResults.append(buff, 0, read);
            }
        } catch (MalformedURLException e) {
            Log.e(LOG_TAG, "Error processing Places API URL", e);
            return resultList;
        } catch (IOException e) {
            Log.e(LOG_TAG, "Error connecting to Places API", e);
            return resultList;
        } finally {
            if (conn != null) {
                conn.disconnect();
            }
        }

        try {
            // Create a JSON object hierarchy from the results
            JSONObject jsonObj = new JSONObject(jsonResults.toString());
            JSONArray predsJsonArray = jsonObj.getJSONArray("predictions");

            // Extract the Place descriptions from the results
            resultList = new ArrayList<String>(predsJsonArray.length());
            for (int i = 0; i < predsJsonArray.length(); i++) {
                resultList.add(predsJsonArray.getJSONObject(i).getString("description")+ "," + predsJsonArray.getJSONObject(i).getString("place_id") );
            }
        } catch (JSONException e) {
            Log.e(LOG_TAG, "Cannot process JSON results", e);
        }

        return resultList;
    }

}

現在,我在mainactivity中這樣稱呼它:

  autoCompView = (AutoCompleteTextView) getActivity().findViewById(R.id.txtEventLocation);
        autoCompView.setAdapter(new PlacesAutoCompleteAdapter(getActivity(), R.layout.places_autocomplete_item));


        //When click on autocomplete suggestion
        autoCompView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            public void onItemClick(AdapterView<?> listView, View view,
                                    int position, long id) {

                String str = (String) listView.getItemAtPosition(position);
                Toast.makeText(getActivity(), str, Toast.LENGTH_SHORT).show();

            }
        });

當他們單擊它時,我想獲取place_id而不是描述。 所以我顯示了描述,他們可以單擊它,但我想獲取它的place_id ..

您可以將resultList更改為ArrayList<HashMap<String, String>> ,以便可以存儲場所ID和描述。

在代碼中更改這些行

  resultList = new ArrayList<String>(predsJsonArray.length());
  for (int i = 0; i < predsJsonArray.length(); i++) {
       resultList.add(predsJsonArray.getJSONObject(i).getString("description")+ "," + predsJsonArray.getJSONObject(i).getString("place_id") );
  }

這些行:

resultList = new ArrayList<HashMap<String, String>>(predsJsonArray.lengtgh());
for (int i = 0; i < predsJsonArray.length();, i++) {
     HashMap<String, String> place = new HashMap<String, String>();
     String description = predsJsonArray.getJSONObject(i).getString("description");
     String placeId = predsJsonArray.getJSONObject(i).getString("place_id");
     place.put("description", description);
     place.put("place_id", placeId);
     resultList.add(place);
}

還要將public class PlacesAutoCompleteAdapter extends ArrayAdapter<String>更改為public class PlacesAutoCompleteAdapter extends ArrayAdapter<HashMap<String, String>>

此外,更改您的

@Override
public String getItem(int index) {
     return resultList.get(index);
}

這些行:

@Override
Public HashMap<String, String> getItem(int index) {
   return resultList.get(index);
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM