我做了一个程序里面有一个片段和一个recyclerviw。
片段布局如下所示
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data>
<variable
name="homeViewModel"
type="com.phatedev.eliquidcalculator.ui.home.HomeViewModel" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/e_liquid_list"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:listData="@{homeViewModel.eLiquids}"
tools:listitem="@layout/list_e_liquid_item" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
字符串
并且单行list_e_liquid_item的布局是
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="eLiquid"
type="com.phatedev.eliquidcalculator.domains.ELiquid" />
</data>
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_margin="8dp"
android:backgroundTint="#00AA44">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<!-- Title, secondary and supporting text -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{eLiquid.name}"
tools:text="Banana, Fragola, Ananas"
android:textAppearance="?attr/textAppearanceHeadline6" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@{eLiquid.description}"
tools:text="https://www.netflix.com/watch/80111460?trackId=155573558"
android:textAppearance="?attr/textAppearanceBody2"
android:textColor="?android:attr/textColorSecondary" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@{eLiquid.base}"
tools:text="80/20"
android:textAppearance="?attr/textAppearanceBody2"
android:textColor="?android:attr/textColorSecondary" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</layout>
型
在Android Studio预览版中,一切看起来都很完美,正如你在我在Android Studio
上拍摄的这张截图中所看到的那样
但是当我在模拟器上运行应用程序时,布局被破坏了,我不明白我做错了什么
编辑:
RecyclerView中的app:listData="@{homeViewModel.eLiquids}"
就是这个绑定函数
@BindingAdapter("listData")
fun bindRecyclerView(recyclerView: RecyclerView, data: List<ELiquid>?) {
val adapter = recyclerView.adapter as ELiquidAdapter
adapter.submitList(data)
}
型
编辑:好的,我找到了解决我的问题here的方法,但有人能解释一下为什么它能起作用吗?
5条答案
按热度按时间wgx48brx1#
您没有共享适配器代码,但问题很可能是您正在膨胀没有“parent”参数的项视图。我也遇到过同样的问题,下面是我为解决这个问题所做的修改。
之前:
未指定父参数-列表项宽度将设置为换行内容,即使设置为与xml中的父项匹配。
字符串
之后:
指定了“parent”参数,列表项将正确膨胀以匹配父视图。此外,添加了参数false,因为回收器视图将附加视图。
型
uujelgoq2#
它也不同,从手机到另一个,因为密度的变化
编辑布局以匹配宽度
字符串
lmvvr0a83#
尝试在activity.xml中更改
字符串
至
型
5jdjgkvh4#
实际上,我也面临着同样的问题,它看起来很好,在预览必须同时运行ii,它是得到 Package 周围,所以我所做的是。请添加虚拟match_parent视图如下在您的线性布局的list_e_liquid_item文件。
第一个月
请让我知道如果它不工作。
dsf9zpds5#
我分享我的经验:
如果在执行过程中有其他影响布局性能的代码,这是正常的。
举例来说:1-你有一个带边距的列表视图,在执行过程中,你将列表视图适配器膨胀到layoutout。因此您有listview xml代码、layout xml代码和adapter java/Kotlin代码。你要确定哪一个先执行,最后一个才生效。
2-类似于上面的情况,你有一个特定宽度的textview/layout,你可以在代码中编程改变宽度。
代码中的解决方案