-2
私は近くのさまざまな場所を検索することができましたが、ユーザーがリストを使用して場所を表示したり選択できるリストに配置したいと考えています。近くの場所を表示するandroid
私が使用してこれらの場所を検索:
static String makeURL1() throws UnsupportedEncodingException {
StringBuilder googlePlacesUrl = new StringBuilder("https://maps.googleapis.com/maps/api/place/nearbysearch/json?");
googlePlacesUrl.append("location=" + latitude + "," + longitude);
googlePlacesUrl.append("&radius=" + radiusplace.inputtedradius);
googlePlacesUrl.append("&type=" + "art_gallery");
googlePlacesUrl.append("&sensor=true");
googlePlacesUrl.append("&key=" + "AIzaSyCx8-ZK6m5FTgEoTaSRaUuALV-5Vnz1Co4");
Log.d("getUrl", googlePlacesUrl.toString());
return (googlePlacesUrl.toString());
}
public void getplaces() {
String url = null;
try {
url = makeURL1();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
placesAsyncTask download = new placesAsyncTask(url);
download.execute();
}
地図上を示しているリスト内のすべての場所を置くためにどのように?
私の考えは、私は、ユーザーが自由に自分が見たい場所を管理することができますし、コンテンツで、それは絵との情報が表示されます上のボタンフィルターを持っているこの
のようなものですRecyclerView
を使用してデータを表示する方法を知っている特定のPLAC
'ListView'または' RecyclerView'を使用してください。 https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html https://developer.android.com/reference/android/widget/ListView.html –
私は使用することを知っていますListViewまたはRecycleView、私はリストに場所を入れてガイドを探しています。 – freelancsandroidplayer
ガイドでは、「RecyclerView」のチュートリアルの中で、データを使ってデータをどのように表示するのかを説明しています。 –