- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 android-maps-utils 中从 0.4.3 升级到 0.4.4 后,我无法在 IconGenerator 中为群集图标设置 TextView 样式。无论我使用什么样式(来自 lib 或来 self 的 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
在这里复制/粘贴我的答案:经过几次挖掘提交后,我注意到 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 - setTextAppearance() 中的 TextView android-maps-utils 0.4.4 始终透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39205798/
安卓6.0 安卓工作室 3.6 在我的 fragment 中,当单击按钮时,我会像这样“即时”更改样式: bluetoothPageViewModel.isDisableModeLiveData(
layout=(RelativeLayout)findViewById(R.id.relate); TextView tv = new TextView(DetailA
按钮 setTextAppearance(Context context, int resid) 已弃用 和 setTextAppearance(int resid) - 仅适用于 API 级别 23
当我以编程方式调用 setTextAppearance(this, android.R.style.TextAppearance_Medium) 时,我得到带有浅灰色文本的中号字体。 但是,当我在 x
我知道有很多关于 setTextAppearance 的讨论,但我进行了搜索,但没有找到任何适合我的东西...... 我正在以编程方式设置 textView 的代码,它位于表格行内。 但是当我尝试从
在我的三星 Galaxy Note 上运行,以下代码为每个日志语句记录 28.0。我做错了吗? label = new TextView(context); Log.e("text size", ""
public void setTextAppearance (Context context, int resId) Added in API level 1 This method was depr
在 android-maps-utils 中从 0.4.3 升级到 0.4.4 后,我无法在 IconGenerator 中为群集图标设置 TextView 样式。无论我使用什么样式(来自 lib 或
我是一名优秀的程序员,十分优秀!