Если вы не хотите использовать форму, CardView - это самый простой способ: для более подробной информации обратитесь к официальным документам
. Сначала добавьте эту строку в ваши зависимости:
implementation 'com.android.support:cardview-v7:28.0.0'
затем используйте его следующим образом:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
... >
<!-- A CardView that contains a TextView -->
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="200dp"
android:layout_height="200dp"
card_view:cardCornerRadius="4dp">
<TextView
android:id="@+id/info_text"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.CardView>
</LinearLayout>
Здесь вы можете найти больше вариантов , таких как: радиус угла, высота, цвет фона и т. Д.