setTextAppearance() 中的 TextView android-maps-utils 0.4.4 始终透明
TextView in setTextAppearance() android-maps-utils 0.4.4 always transparent
在 android-maps-utils 中从 0.4.3 升级到 0.4.4 后,我无法在 IconGenerator 中为群集图标设置 TextView 样式。无论我使用什么样式(来自 lib 或来自我的 styles.xml),TextView 都保持透明。
public class MapRenderCustom extends DefaultClusterRenderer<T> {
public MapRenderCustom(Context context, GoogleMap map, ClusterManager<T> clusterManager) {
super(context, map, clusterManager);
new IconGenerator(contex).setTextAppearance(com.google.maps.android.R.style.ClusterIcon_TextAppearance);
}
}
以上版本适用于 0.4.3。
但在 0.4.4 中它不起作用(即使更改为 amu_ClusterIcon_TextAppearance)。
可归咎于此的代码:https://github.com/googlemaps/android-maps-utils/commit/29490ad2cbc6bf2fb13fb7ac60eb8769c408bd51但我不明白它如何破坏 TextView 的可见性。
我按照这里的描述解决了:
https://github.com/googlemaps/android-maps-utils/issues/315
copy/paste 我的回答在这里:
经过几次挖掘提交后,我注意到 makeSquareTextView 方法也发生了变化。
来自
squareTextView.setId(R.id.text);
到
squareTextView.setId(R.id.amu_text);
这使得样式更改能够根据需要显示文本标签
来自
mIconGenerator.setTextAppearance(R.style.ClusterIcon_TextAppearance);
到
mIconGenerator.setTextAppearance(R.style.amu_ClusterIcon_TextAppearance);
在 android-maps-utils 中从 0.4.3 升级到 0.4.4 后,我无法在 IconGenerator 中为群集图标设置 TextView 样式。无论我使用什么样式(来自 lib 或来自我的 styles.xml),TextView 都保持透明。
public class MapRenderCustom extends DefaultClusterRenderer<T> {
public MapRenderCustom(Context context, GoogleMap map, ClusterManager<T> clusterManager) {
super(context, map, clusterManager);
new IconGenerator(contex).setTextAppearance(com.google.maps.android.R.style.ClusterIcon_TextAppearance);
}
}
以上版本适用于 0.4.3。 但在 0.4.4 中它不起作用(即使更改为 amu_ClusterIcon_TextAppearance)。
可归咎于此的代码:https://github.com/googlemaps/android-maps-utils/commit/29490ad2cbc6bf2fb13fb7ac60eb8769c408bd51但我不明白它如何破坏 TextView 的可见性。
我按照这里的描述解决了: https://github.com/googlemaps/android-maps-utils/issues/315
copy/paste 我的回答在这里: 经过几次挖掘提交后,我注意到 makeSquareTextView 方法也发生了变化。 来自
squareTextView.setId(R.id.text);
到
squareTextView.setId(R.id.amu_text);
这使得样式更改能够根据需要显示文本标签
来自
mIconGenerator.setTextAppearance(R.style.ClusterIcon_TextAppearance);
到
mIconGenerator.setTextAppearance(R.style.amu_ClusterIcon_TextAppearance);