是否有任何方法点位置在谷歌地图的位置写在EditText由用户android



我有这个属性的编辑文本。

           <EditText
                android:id="@+id/street_address"
                style="@style/create_event_infotext_normal"
                android:textColor="@android:color/black"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/extra_desc"
                android:ems="10"
                android:inputType="text" />

我有一个带有这个属性的map fragment。

     <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="100dp"/>

我需要在EditText中写入的任何位置,必须由谷歌地图直接指向

这就是我现在想做的。我用的是谷歌给我的:https://developers.google.com/places/training/autocomplete-android

我有一个AsyncTask下载数据和解析内容,所以结果是位置列表。(方法自动完成)

在我的主要活动中,我有一个autocompletetextview和一个texttwatcher。当我在autocompletetextview中写东西时,我使用了autocomplete方法,我得到了位置

相关内容

  • 没有找到相关文章

最新更新