嗨,我正在创建 android 应用程序,其中我必须在地图上显示自定义图例(谷歌地图 v2)。我在谷歌上搜索过,但没有找到任何有用的信息。我的问题是,是否可以在 googlemap v2 上添加图例。如果是请让我知道我该怎么做???任何教程或有用的链接都会有所帮助。
问问题
1675 次
1 回答
0
试试这个在地图片段上设置一个文本视图
或者
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="152dp"
android:layout_weight="0.71"
class="com.google.android.gms.maps.SupportMapFragment" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</fragment>
于 2016-02-06T23:41:39.170 回答