Tint を白で描画可能に設定したいのですが、アプリケーションを暗いテーマに変更するときに変更する色がないので、このように色を宣言します。
values/colors.xml
<color name="white_force">#ffffff</color>
values-night/colors.xml
<color name="white_force">#ffffff</color>
ic_drawable.xml
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="14dp"
android:height="18dp"
android:viewportWidth="14"
android:viewportHeight="18">
<path
android:pathData="M12,......,3V15Z"
android:fillColor="#ffffff" />
</vector>
layout
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/bookmarkImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:duplicateParentState="true"
android:padding="@dimen/ds2_space_2dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@drawable/ic_bookmark_white_14" />
</androidx.constraintlayout.widget.ConstraintLayout>
しかし、アプリをダークモードに変更するときにTintをドローアブルに設定すると、白ではなく黒のt0色が設定されます。