gpt4 book ai didi

android - 回收站 View 项目中的文本超出屏幕范围

转载 作者:行者123 更新时间:2023-12-05 00:16:19 25 4
gpt4 key购买 nike

我在回收站 View 中使用了一个 item.xml,但文本超出了屏幕。我试图依靠这个 answer ,

You can avoid all of this by giving each textview a width of match_parent and an appropriate layout_weight.

但我觉得很困惑,因为我不确定

width="0"

应该实现。

我的 item.xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/productLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="@dimen/product_recycler_view_margin">

<ImageView
android:id="@+id/photoIV"
android:layout_width="@dimen/product_image_size"
android:layout_height="@dimen/product_image_size"
android:scaleType="centerCrop"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="@dimen/product_image_size"
android:orientation="vertical"
android:gravity="top"
android:layout_marginStart="@dimen/product_details_margin_left"
app:layout_constraintStart_toEndOf="@+id/photoIV"
app:layout_constraintTop_toTopOf="@id/photoIV">

<TextView
android:id="@+id/titleTV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Top"

android:textStyle="bold"
android:textSize="@dimen/product_details_title" />

<TextView
android:id="@+id/descriptionTV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/product_details_margin_middle"
android:text="Bottom"
android:textSize="@dimen/product_details_description_text_size" />

</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

有一张图片,右边是标题和描述。标题和描述都从屏幕上消失了:

enter image description here

我的 fragment 中显示它的回收站 View (如果重要的话):

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/productsRV"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

最佳答案

问题是,您只定义了 LinearLayout 的左约束,而没有定义右约束。

所以你需要添加正确的约束。您还需要将此处的宽度替换为 0dp,因为 0 在此上下文中表示“匹配约束”。

<LinearLayout
android:layout_width="0dp"
android:layout_height="@dimen/product_image_size"
android:orientation="vertical"
android:gravity="top"
android:layout_marginStart="@dimen/product_details_margin_left"
app:layout_constraintStart_toEndOf="@+id/photoIV"
app:layout_constraintTop_toTopOf="@id/photoIV"
app:layout_constraintEnd_toEndOf="parent">

//编辑:match_parent 因为 ConstraintsLayouts 根本不支持宽度和高度标识符。

关于android - 回收站 View 项目中的文本超出屏幕范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60262496/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com