Не удается использовать значение ARGB color int в Kotlin?

когда я хочу оживить textColor of TextView в Котлин:

val animator = ObjectAnimator.ofInt(myTextView, "textColor", 0xFF8363FF, 0xFFC953BE)

эта ошибка возникает:

Error:(124, 43) None of the following functions can be called with the arguments supplied:
public open fun <T : Any!> ofInt(target: TextView!, xProperty: Property<TextView!, Int!>!, yProperty: Property<TextView!, Int!>!, path: Path!): ObjectAnimator! defined in android.animation.ObjectAnimator
public open fun <T : Any!> ofInt(target: TextView!, property: Property<TextView!, Int!>!, vararg values: Int): ObjectAnimator! defined in android.animation.ObjectAnimator
public open fun ofInt(target: Any!, propertyName: String!, vararg values: Int): ObjectAnimator! defined in android.animation.ObjectAnimator
public open fun ofInt(target: Any!, xPropertyName: String!, yPropertyName: String!, path: Path!): ObjectAnimator! defined in android.animation.ObjectAnimator
public open fun ofInt(vararg values: Int): ValueAnimator! defined in android.animation.ObjectAnimator

кажется, что значение 0xFF8363FF и 0xFFC953BE нельзя бросить в Int в Котлине, однако, это нормально в Java:

ObjectAnimator animator = ObjectAnimator.ofInt(myTextView, "textColor", 0xFF8363FF, 0xFFC953BE);

какие идеи? Спасибо заранее.

1 ответов


0xFF8363FF (а также 0xFFC953BE) является Long, а не Int.

вы должны бросить их в Int конкретно:

val animator = ObjectAnimator.ofInt(myTextView, "textColor", 0xFF8363FF.toInt(), 0xFFC953BE.toInt())

дело в том, что числовое значение 0xFFC953BE is 4291384254, поэтому он должен храниться в Long переменной. Но высокий бит здесь-знаковый бит, который обозначает отрицательное число:-3583042 хранящийся в Int.

и в этом разница между двумя языками. В Котлин вы следует добавить - знак для обозначения отрицательных Int что неверно в Java:

// Kotlin
print(-0x80000000)             // >>> -2147483648 (fits into Int)
print(0x80000000)              // >>>  2147483648 (does NOT fit into Int)

// Java
System.out.print(-0x80000000); // >>> -2147483648 (fits into Integer)
System.out.print(0x80000000);  // >>> -2147483648 (fits into Integer)