Я разрабатываю приложение в Android Studio.В предварительном просмотре это выглядит так, как я хочу, но при создании приложения есть LinearLayout, который содержит два TextView, которые выглядят меньше, и я не понимаю, почему
Это элемент представления Recycler:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/friend_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/profile_picture"
android:layout_width="44dp"
android:layout_height="44dp"
android:src="@drawable/head" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:gravity="left"
android:paddingLeft="2dp"
android:paddingRight="2dp"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold"
tools:text="Guillermo Rodriguez" />
<TextView
android:id="@+id/friend_position"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="delantero"
android:textColor="@color/white"
android:textSize="13sp" />
</LinearLayout>
Вот как это выглядит: https://photos.app.goo.gl/BgNQhgpNKbgEGCCR6 и мне нужно, чтобы текст заполнил всю ширину
Я ожидаю увидеть оба TextView до конца экрана, но ониконец до середины.Есть идеи?