使用Android Studio的最低 SDK API 14的Login Activity模板创建项目,然后在styles.xml中自定义为粉色:colorAccent
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">#FF4081</item><!-- pink color -->
</style>
但在华为 P9 Lite (Marshmallow) 中无效:
我应该怎么做才能使光标+指针颜色可移植?
请注意,colorControlActivated
有同样的问题,不仅colorAccent
.
[更新]
用小米3测试,没有这个问题。android:textCursorDrawable="@drawable/fb"
这 3 台设备具有相同的行为(即只有Huawei P9 Lite不工作)。