自动完成的TextView谷歌Places API的说明 - > place_id [英] Autocomplete textview google places api description -> place_id

查看:149
本文介绍了自动完成的TextView谷歌Places API的说明 - > place_id的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是谷歌从自动完成的地方得到的位置predicions。
现在,当他们点击这些predictions我想要得到的place_id之一,但我不知道该怎么办呢?

I'm using autocomplete places from Google to get predicions for locations. Now when they click on one of those predictions I want to get the place_id but I don't know how to do it?

这是我的PlcaesAutoCompleteAdapter:

This is my 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:

Now I call it like this in my 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 ..

When they click on it, I want to get the place_id instead of the description. So I show the description and they can click on it but I want to get the place_id of it ..

推荐答案

您可以更改 resultList 的ArrayList&LT; HashMap的&LT;字符串,字符串&GT ;方式&gt; ,这样就可以同时存储的地方id和描述

You can change your resultList to an ArrayList<HashMap<String, String>>, so that you can store both the place id and the description.

在code更改这些行

  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);
}

也改变你的公共类PlacesAutoCompleteAdapter扩展ArrayAdapter&LT;弦乐&GT; 公共类PlacesAutoCompleteAdapter扩展ArrayAdapter&LT; HashMap的&LT;字符串,字符串&GT;&GT;

此外,更改

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

这些行:

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

这篇关于自动完成的TextView谷歌Places API的说明 - &GT; place_id的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆