簡體   English   中英

將數據從Json Google Places API解析到recyclerView時出現問題

[英]Problem in parsing data from Json Google Places API to recyclerView

我想向用戶顯示他們附近的酒吧列表,沒有地圖。 我已經嘗試過PlaceLikelihoods,它可以正常工作,但是我不能對找到的地點類型施加任何限制,它可以顯示地圖。

因此,我通過URL搜索,但“嘗試/捕獲”總是導致異常,在那里找到的吐司顯示了很好的結果,但recyclerview的列表未填寫。 我發現有一個類似的問題,據說已經完成了對notifyDataSetChanged()的移動。

我發現掌握API和解析非常復雜,因此這可能是一個愚蠢的錯誤,但是已經過去了2周,但我還沒有成功。 謝謝閱讀。

public class TestMap extends AppCompatActivity {

// CONNECTION_TIMEOUT and READ_TIMEOUT are in milliseconds
public static final int CONNECTION_TIMEOUT = 10000;
public static final int READ_TIMEOUT = 15000;
private LocListAdapter mAdapter;
private EmptyStateRecyclerView mLocRecView;
private ArrayList<LocListUser> data;

private double longitudeUser;
private double latitudeUser;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_loc);

    data = new ArrayList<>();

    mAdapter = new LocListAdapter(data, TestMap.this);
    mLocRecView = findViewById(R.id.locRecView);
    mLocRecView.setItemAnimator(new DefaultItemAnimator());
    mLocRecView.setLayoutManager(new LinearLayoutManager(TestMap.this));
    mLocRecView.setHasFixedSize(true);
    //data.clear();
    mLocRecView.setAdapter(mAdapter);
    mLocRecView.clearStateDisplays();

    longitudeUser = getIntent().getDoubleExtra("long", 151.2106085);
    latitudeUser = getIntent().getDoubleExtra("lat", -33.8523341);

    new AsyncFetch().execute();
}

private class AsyncFetch extends AsyncTask<String, String, String> {
    ProgressDialog pdLoading = new ProgressDialog(TestMap.this);
    HttpURLConnection conn;
    URL url = null;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pdLoading.setMessage("\tLoading...");
        pdLoading.setCancelable(false);
        pdLoading.show();
    }

    @Override
    protected String doInBackground(String... params) {
        try {
            StringBuilder sb;
            sb = new StringBuilder("https://maps.googleapis.com/maps/api/place/nearbysearch/json?");
            sb.append("location=").append(latitudeUser).append(",").append(longitudeUser);
            sb.append("&radius=5000");
            sb.append("&types=" + "bar");
            sb.append("&key=API_KEY");
            url = new URL(String.valueOf(sb));

        } catch (MalformedURLException e) {
            e.printStackTrace();
            return e.toString();
        }
        try {
            conn = (HttpURLConnection) url.openConnection();
            conn.setReadTimeout(READ_TIMEOUT);
            conn.setConnectTimeout(CONNECTION_TIMEOUT);
            conn.setRequestMethod("GET");
            conn.setDoOutput(true);

        } catch (IOException e1) {
            e1.printStackTrace();
            return e1.toString();
        }
        try {
            int response_code = conn.getResponseCode();
            if (response_code == HttpURLConnection.HTTP_OK) {
                InputStream input = conn.getInputStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(input, StandardCharsets.UTF_8));
                StringBuilder result = new StringBuilder();
                String line;

                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }
                // Pass data to onPostExecute method
                return (result.toString());

            } else {
                return ("unsuccessful");
            }
        } catch (IOException e) {
            e.printStackTrace();
            return e.toString();
        } finally {
            conn.disconnect();
        }
    }

    @Override
    protected void onPostExecute(String result) {
        pdLoading.dismiss();
        try {
            JSONArray jArray = new JSONArray(result);
            for (int i = 0; i < jArray.length(); i++) {
                JSONObject json_data = jArray.getJSONObject(i);
                LocListUser locList = new LocListUser();
                locList.setAddress(json_data.getString("vicinity"));
                locList.setId(json_data.getString("reference"));
                locList.setName(json_data.getString("place_name"));
                locList.setLat(json_data.getJSONObject("geometry").getJSONObject("location").getString("lat"));
                locList.setLon(json_data.getJSONObject("geometry").getJSONObject("location").getString("lng"));
                locList.setType(json_data.getString("types"));
                locList.setLatUser(latitudeUser);
                locList.setLonUser(longitudeUser);
                data.add(locList);
                mAdapter.notifyDataSetChanged();
            }
            //mAdapter.notifyDataSetChanged();
            mLocRecView.invokeState(EmptyStateRecyclerView.STATE_OK);
        } catch (JSONException e) { //e.toString()
            e.printStackTrace();
        }
    }
}

}

您正在使用硬編碼的字符串

 JSONArray jArray = new JSONArray("results");

你必須使用

JSONArray jArray = new JSONArray(result);

暫無
暫無

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

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