我使用此属性编辑文本。
<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" />
我有这个属性的地图片段。
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="100dp"/>
我需要在EditText中编写的任何位置,必须直接由Google Map指向。
答案 0 :(得分:0)
这就是我现在正在尝试做的事情。 我正在使用谷歌给我的东西:https://developers.google.com/places/training/autocomplete-android
我有一个AsyncTask,可以下载数据并解析内容,因此结果就是地点列表。 (方法自动完成)
在我的主要活动中,我有一个autocompletetextview和一个TextWatcher。当我在autocompletetextview中写了一些东西时,我使用了自动完成方法,然后我得到了这些地方。
希望这会对你有所帮助。