I am using android studio 4.2.2 when I try to change button background image with xml. my code is below
<Button
android:id="@+id/btn_ok"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@drawable/btn_background"
android:text="@string/ok"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/btn_cancel"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintWidth_percent="0.3" />
this was working for the previous version of android studio. but now the buttons's background is always purple. any additional setting needed?