<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:layout_height="match_parent">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="500dp"
android:layout_margin="15dp"
app:cardCornerRadius="15dp"
app:cardElevation="5dp">
<LinearLayout
android:id="@+id/linearmain"
android:layout_width="match_parent"
android:layout_height="400dp"
android:orientation="vertical">
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="400dp"
android:backgroundTint="@color/white"
android:scaleType="fitXY"
app:layout_constraintEnd_toEndof="parent"
app:layout_constraintStart_toStartof="parent"
app:layout_constraintTop_toTopof="parent"
app:srcCompat="@drawable/aaaaa" />
<LinearLayout
android:id="@+id/linearhori"
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:weightSum="3">
<ImageView
android:id="@+id/like"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_gravity="center"
android:layout_weight="1"
android:src="@drawable/sas"
app:layout_constraintEnd_toEndof="parent"
app:layout_constraintStart_toStartof="parent"
/>
<ImageView
android:id="@+id/disslike"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_gravity="center"
android:layout_weight="1"
android:src="@drawable/aan"
app:layout_constraintEnd_toEndof="parent"
app:layout_constraintStart_toStartof="parent"
/>
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
</LinearLayout>
Ошибка выдаётся про два imageview и один shapeableimageview что с ними не так и как исправить? И почему то эти два imageview не видно как можно это исправить?