Recyclerview занимает больше ширины, чем родительская ширина - PullRequest
2 голосов
/ 14 июня 2019

Я не знаю, почему RecyclerView принимает большую ширину, чем родительская ширина, даже если я установил в xml ширину match_parent.Я не думаю, что что-то не так с XML, но я не уверен с адаптером.Вот код адаптера:

class ListAdapter(val data : ArrayList<devices>): RecyclerView.Adapter<ListAdapter.ViewHolder>() {

        override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
            return ViewHolder(
                LayoutInflater.from(parent.context)
                    .inflate(R.layout.devicelist, parent, false)
            )
        }

        override fun getItemCount() = data.size

        override fun onBindViewHolder(holder: ViewHolder, position: Int) {
            val list = data[position]
            holder.view.listimgtxt.text = list.name
            holder.view.listsw1.text = list.sw1
            holder.view.listsw2.text = list.sw2
            holder.view.listsw3.text = list.sw3
            holder.view.listsw4.text = list.sw4
        }
        class ViewHolder(val view: View) : RecyclerView.ViewHolder(view)
    }

Вот мой xml-код (удаленные просмотры изображений и текстовые просмотры, так как код слишком длинный):

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</android.support.constraint.ConstraintLayout>

XML-файл, содержащий обзор повторного использования:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
        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/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:showIn="@layout/app_bar_main"
        tools:context=".MainActivity"
        android:background="#FFFFFF"
>

    <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical"
            android:id="@+id/recyclerview"
    />
</FrameLayout>

Выход: enter image description here

1 Ответ

0 голосов
/ 14 июня 2019

Попробуйте использовать макет ограничения и установите ширину представления Recycler равным 0dp и ограничьте его слева и справа от родителя ... Соответствие родителя не учитывает ограничения.

 <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/content_frame"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:scrollbars="vertical"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        />
</android.support.constraint.ConstraintLayout>

Кроме того, установите ширину всех изображений в элементе списка на 0dp, чтобы они соответствовали размеру экрана в соответствии с установленным ограничением.

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