gpt4 book ai didi

android - PolylineOptions .color() 不工作

转载 作者:行者123 更新时间:2023-11-29 15:36:20 25 4
gpt4 key购买 nike

我正在尝试使用以下代码在我的 map 折线上设置红色:

PolylineOptions rectOptions = new PolylineOptions();
rectOptions.color(R.color.colorPrimary);
String[][] lineInformation = ((MyApplication)getApplication()).getLineInformation(line);
for (int i=0; i<lineInformation.length; i++){
rectOptions.add(new LatLng(Double.parseDouble(lineInformation[i][0]),Double.parseDouble(lineInformation[i][1])));
}

但它不起作用,它没有显示我的应用程序的红色主色,而是显示带有一些 alpha 的深色。

我遵循了官方指南:https://developers.google.com/maps/documentation/android-api/shapes

最佳答案

您的问题是由 颜色资源标识符颜色值 混淆引起的,两者都是 int

我们来看看the documentation for PolylineOptions.color() :

public PolylineOptions color (int color)

Sets the color of the polyline as a 32-bit ARGB color. The default color is black (0xff000000).

由于文档指出输入应该是“32 位 ARGB 颜色”,因此您不能只传递颜色资源 ID;您必须首先手动将其解析为颜色值。

R.color.colorPrimary 是一个 int 具有一些自动生成的值,可能类似于 0x7f050042。不幸的是,这可以解释为 ARGB 颜色,并且是部分透明的极深蓝色。因此,应用程序不会崩溃,您只会在折线上看到意想不到的颜色。

要获得正确的颜色,请使用 ContextCompat.getColor() 将您的颜色资源 ID 解析为颜色值,然后将颜色值传递给 color() 方法:

Context c = /* some context here */
int colorPrimary = ContextCompat.getColor(c, R.color.colorPrimary);
rectOptions.color(colorPrimary);

关于android - PolylineOptions .color() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49097427/

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