gpt4 book ai didi

android - 对齐谷歌地图标记 fragment 中的文本

转载 作者:太空宇宙 更新时间:2023-11-03 11:40:08 29 4
gpt4 key购买 nike

我希望代码段中的字符串居中对齐。

另外,代码段中的换行符(\n)被转换为空格,有没有办法插入换行符?

我的相关代码:

GoogleMap map = ...
map.addMarker(new MarkerOptions().position(pos)
.title("title")
.snippet("body \n and mind");

谢谢

最佳答案

使用一些例子,以及答案来自:custom info window adapter with custom data in map v2 ,我遇到了以下解决方案:

标记.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" />

</RelativeLayout>

Java:

map.setInfoWindowAdapter(new InfoWindowAdapter() {

@Override
public View getInfoWindow(Marker arg0) {
return null;
}

@Override
public View getInfoContents(Marker marker) {

View v = getLayoutInflater().inflate(R.layout.marker, null);

TextView info= (TextView) v.findViewById(R.id.info);

info.setText(marker.getPosition().toString());

return v;
}
});

关于android - 对齐谷歌地图标记 fragment 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15783227/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com