Android Recycler Посмотреть проблему макета элемента - PullRequest
0 голосов
/ 10 апреля 2019

Я разрабатываю приложение в 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 до конца экрана, но ониконец до середины.Есть идеи?

Ответы [ 5 ]

0 голосов
/ 12 апреля 2019

Я решил это! Кто-то настроил его с помощью GridLayoutManager, и это должно было быть с LinearLayoutManager. Я изменил его, и оно было исправлено

0 голосов
/ 11 апреля 2019

Я думаю, что вы установили просмотрщик на определенную ширину.попробуйте ввести ширину в соответствие родителю.Я рекомендую использовать ограничение пользователей, чтобы избежать вложенных групп просмотра.как это:

<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/friend_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">


<ImageView
        android:id="@+id/profile_picture"
        android:layout_width="44dp"
        android:layout_height="44dp"
        android:src="@drawable/patient"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"/>


<TextView
        android:id="@+id/name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="1dp"
        android:gravity="left"
        android:paddingLeft="2dp"
        android:paddingRight="2dp"
        android:textColor="@android:color/white"
        android:textSize="16sp"
        android:textStyle="bold"
        tools:text="Guillermo Rodriguez"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/profile_picture"/>

<TextView
        android:id="@+id/friend_position"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:text="delantero"
        android:textColor="@android:color/white"
        android:textSize="13sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/profile_picture"
        app:layout_constraintTop_toBottomOf="@+id/name"/>

0 голосов
/ 10 апреля 2019

Рекомендую использовать атрибут веса LinearLayout.установите ваши корни LinearLayout в match_parent.и ваши вложенные LinearLayout и оба TextView layout_height до 0dp и их weight до 1 вот отредактированный код:

<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="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">

    <TextView
    android:id="@+id/name"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    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="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="left"
    android:text="delantero"
    android:textColor="@color/white"
    android:textSize="13sp" />

</LinearLayout>
</LinearLayout>
0 голосов
/ 11 апреля 2019

Пожалуйста, проверьте, правильно ли установлена ​​RecycleView ширина (например, match_parent), и может ли она простираться на всю ширину.Не могли бы вы предоставить xml-код с RecycleView?

0 голосов
/ 10 апреля 2019

Если я правильно понял ваш вопрос, вам нужно, чтобы два TextView заполнили всю высоту, не так ли?

В этом случае в обоих ваших TextViews измените атрибут layout_height на 0dp и добавьте к ним android:layout_weigth=0.5. Это заставит их заполнить всю высоту вашего LinearLayout, какой бы высоты она ни была, и они будут делить пространство прямо посередине.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...