如何更改 EditText 光标旋钮颜色 android(不是旋钮的光标颜色)

how can i change the EditText cursor knob color android (not the cursor color the knob)

我正在尝试更改我的 EditText 光标旋钮但无法在设备上看到它,附件是我的 XML 此布局

<EditText
    android:id="@+id/new_text_edit_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:imeOptions="flagNoExtractUi"
    android:layout_marginLeft="16dp"
    android:layout_toLeftOf="@+id/new_text_button_send"
    android:background="@android:color/white"
    android:hint="@string/write_a_message"
    android:textSize="@dimen/text_size_large"
    android:gravity="center_vertical"
    android:fontFamily="sans-serif-light"
    android:inputType="text|textMultiLine|textCapSentences|textShortMessage"
    android:textCursorDrawable="@drawable/cursor_glide_blue"
    android:lines="3"
    android:singleLine="false"/>

要更改 EditText

中的光标选择句柄
android:textSelectHandle="@drawable/handle_middle"
android:textSelectHandleLeft="@drawable/handle_left"
android:textSelectHandleRight="@drawable/handle_right"