无法上传APK到谷歌播放.已经尝试过其他浏览器和PC.在没有可以上传.
永远得到:
__PRE__
我尝试使用三元运算符来更改按钮的文本颜色。类似这样的:这是 xml。
<Button
android:id="@+id/actionButton"
android:layout_width="113dp"
android:layout_height="30dp"
android:background="@drawable/button"
android:backgroundTint="@{selected ? R.color.white : R.color.turquoise}"
android:text="@{selected ? "Selected " : "Select "}"
android:textColor="@{selected ? @color/white : @color/turquoise}"
android:onClick="@{(view) -> handler.selectClick(view)}"/>
Run Code Online (Sandbox Code Playgroud)
但颜色设置不正确。相反,我得到了一些奇怪的紫色。
我试过
<import type="com.myapp.R" />
android:textColor="@{selected ? R.color.white : R.color.turquoise}"
Run Code Online (Sandbox Code Playgroud)
结果相同。
我该怎么做呢?