Я не знаю, почему 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>
Выход: