Я занимаюсь разработкой нового приложения для Android, которое показывает кофейные напитки с использованием компонентов дизайна материалов Google.после того, как я перенесу свой проект на Androidx, стиль не будет применять к MaterialCardView IDK, в чем проблема или почему это происходит !!.
Я пытался обновить файлы Gradle, используя последнюю версию библиотеки материалов, и выполнял поиск поВ Интернете не было видно подобной проблемы.
<!--this is the card layout:-->
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coffee_card"
style="@style/CoffeeItemStyle"
android:layout_width="180dp"
android:layout_height="200dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="@dimen/cardview_margin"
android:layout_marginRight="16dp"
android:layout_marginBottom="@dimen/cardview_margin">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/coffee_image"
android:layout_width="0dp"
android:layout_height="0dp"
android:contentDescription="@string/coffee_drink_image"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/coffee_name"
style="@style/CoffeeNameStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="8dp"
android:text="Name"
app:layout_constraintBottom_toTopOf="@+id/coffee_image"
app:layout_constraintStart_toStartOf="@+id/coffee_image"
app:layout_constraintTop_toBottomOf="@+id/coffee_image"
app:layout_constraintVertical_bias="0.82" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.card.MaterialCardView>
<!--this is the style(CoffeeItemStyle):-->
<style name="CoffeeItemStyle" parent="Widget.MaterialComponents.CardView">
<item name="cardBackgroundColor">@android:color/white</item>
<item name="cardCornerRadius">@dimen/cardview_radius</item>
<item name="cardElevation">@dimen/cardview_elevation</item>
<item name="android:clickable">true</item>
<item name="android:stateListAnimator">
@animator/shr_next_button_state_list_anim
</item>
</style>
Я ожидаю, что вид карты будет отображаться с радиусом 4 дп, высотой 8 дп, белым фоном и изменением оси Z при нажатии на вид карты.
на изображении ниже показано, как оно выглядит после миграции