Я занимаюсь разработкой новостного приложения для Android, как я могу создать пользовательский интерфейс, как показано на картинке ниже,
под моим XML-файлом, но он не выдает то, что я хочу
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
card_view:cardPreventCornerOverlap="false"
card_view:cardCornerRadius="25dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:layout_width="60dp"
android:contentDescription="@string/bbc_sport"
android:layout_height="60dp"/>
<TextView
android:id="@+id/articleTitle"
android:layout_width="match_parent"
android:layout_height="30dp"
android:paddingStart="60dp"
android:paddingLeft="100dp" />
<TextView
android:id="@+id/articleTitle"
android:layout_width="match_parent"
android:layout_height="30dp"
android:paddingStart="60dp"
android:paddingLeft="100dp" />
</androidx.cardview.widget.CardView>