预期的数组类型;找到:“ java.util.map <java.lang.String,java.lang.String>”

时间:2019-10-06 10:10:08

标签: java android kotlin

我有一个像第一类的变量:

MyClass{
    companion Object{
        @JvmField val foo = mapOf("a" to "b")
    }
}

当我从另一个类调用它时:

setBackgroundColor(Color.parseColor(MyClass.foo["..."]));

出现错误,提示“期望的数组类型;找到:'java.util.map '“ 有什么问题吗?

请注意,如果我在MyClass中进行相同的调用,则效果很好

这些是错误: enter image description here

这是我的实际数组值:

companion object{
    @JvmField val darkMode = mapOf(
        "bgColor" to "#000000",
        "cardColor" to "#262626"
    )
}

当我从扩展RecyclerView.ViewHolder的类中调用该错误时 enter image description here

1 个答案:

答案 0 :(得分:2)

我刚刚尝试过:

        val foo = mapOf("a" to "Red")
        someView.setBackgroundColor(Color.parseColor(foo["a"]))

它工作正常,可以分享有关该异常的更多详细信息吗?

更新

我尝试完全按照书面规定使用您的MyClass,但我已将a的值替换为Red而不是您的b字符串。

您正确使用parseColor吗?

    /**
     * </p>Parse the color string, and return the corresponding color-int.
     * If the string cannot be parsed, throws an IllegalArgumentException
     * exception. Supported formats are:</p>
     *
     * <ul>
     *   <li><code>#RRGGBB</code></li>
     *   <li><code>#AARRGGBB</code></li>
     * </ul>
     *
     * <p>The following names are also accepted: <code>red</code>, <code>blue</code>,
     * <code>green</code>, <code>black</code>, <code>white</code>, <code>gray</code>,
     * <code>cyan</code>, <code>magenta</code>, <code>yellow</code>, <code>lightgray</code>,
     * <code>darkgray</code>, <code>grey</code>, <code>lightgrey</code>, <code>darkgrey</code>,
     * <code>aqua</code>, <code>fuchsia</code>, <code>lime</code>, <code>maroon</code>,
     * <code>navy</code>, <code>olive</code>, <code>purple</code>, <code>silver</code>,
     * and <code>teal</code>.</p>
     */
    @ColorInt
    public static int parseColor(@Size(min=1) String colorString) {
        if (colorString.charAt(0) == '#') {
            // Use a long to avoid rollovers on #ffXXXXXX
            long color = Long.parseLong(colorString.substring(1), 16);
            if (colorString.length() == 7) {
                // Set the alpha value
                color |= 0x00000000ff000000;
            } else if (colorString.length() != 9) {
                throw new IllegalArgumentException("Unknown color");
            }
            return (int)color;
        } else {
            Integer color = sColorNameMap.get(colorString.toLowerCase(Locale.ROOT));
            if (color != null) {
                return color;
            }
        }
        throw new IllegalArgumentException("Unknown color");
    }

更新2:

好吧,您说过“扩展RecyclerView.ViewHolder的类”,但说该类只是RecyclerView类内部的一个抽象类,因此其中没有setBackgroundColor,除非您正在做类似的事情:

yourViewHolderInstance.itemView.setBackgroundColor

那么setBackgroundColor的签名是什么?

它看起来像public void setBackgroundColor(@ColorInt int color) {吗?

我只是将它添加到我的应用中只是为了好玩:

    override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
        (holder as BaseViewHolder).bind(getItem(position))

// For Filippo :)
holder.itemView.setBackgroundColor(Color.parseColor(MyClass.foo["a"]))
    }

好吧...现在看起来一切都非常红。 :)

更新3

好吧,所以根据您的上一次更新,您是从Java调用它的,因此您不能使用Kotlin语法...

执行以下操作:

        final Map<String, String> foo = MyClass.foo;
        yourView.setBackgroundColor(Color.parseColor(foo.get("a")));

很显然,您可以避免进行中间分配而去:

        v.setBackgroundColor(Color.parseColor(MyClass.foo.get("a")));

我通常更喜欢前者,尤其是当您给它起所有有意义的名称并需要调试时,但是就我而言,这并没有真正的区别。