我正在尝试让我的自定义键盘根据项目中的当前主题更改他的颜色,但它失败了,这是我的代码:
<?xml version="1.0" encoding="UTF-8"?>
<android.inputmethodservice.KeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:keyBackground = "@drawable/keybackground"
android:keyTextColor="?attr/colorPrimary"
android:background="?attr/android:colorBackground"
android:keyTextSize="22sp"/>
当我使用常规颜色时,一切正常!我怎样才能灵活地做到这一点?